85 lines
1.9 KiB
C#
85 lines
1.9 KiB
C#
using skyscraper5.Skyscraper.Scraper.Storage.Split;
|
|
using skyscraper8.DvbI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace skyscraper5.Data.PostgreSql
|
|
{
|
|
public partial class PostgresqlDataStore : DataStorage
|
|
{
|
|
|
|
public void InsertDvbiServiceListEntryPoint(long sourceHash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool TestForServiceListEntryPoints(long sourceHash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void InsertDvbiServiceList(DvbiServiceList serviceList)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool TestForDvbiService(string id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool TestForDvbiServiceListEntryPoints(long sourceHash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void UpdateDvbiServiceListLastCheckedDate(string id, DateTime currentTime)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public DateTime GetLastDvbiServiceListEntryPointUpdateDate(long sourceHash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public DateTime GetDvbiServiceListLastUpdateDate(string id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void AddDvbiServiceListToServiceListEntryPoint(DvbiServiceList serviceList, long sourceHash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void AddDvbiServiceToServiceList(string id, string serviceListId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public int GetDvbiServiceVersion(string id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void UpdateDvbiService(DvbIService service)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void UpdateDvbiServiceListEntryPointUpdateDate(long hash, DateTime currentTime)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void InsertDvbiService(DvbIService service)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|