namespace HStation.CAL.LocalClient
{
///
///
///
public class TransferFileUser : ITransferFileUser
{
private readonly HStation.Service.TransferFileUser _service = new();
public Task BulkInserts(List list)
{
throw new NotImplementedException();
}
public Task BulkUpdates(List list)
{
throw new NotImplementedException();
}
public Task DeleteAll()
{
throw new NotImplementedException();
}
public Task DeleteByID(long ID)
{
throw new NotImplementedException();
}
public Task DeleteByIds(List Ids)
{
throw new NotImplementedException();
}
public Task> GetAll()
{
throw new NotImplementedException();
}
public Task GetByID(long ID)
{
throw new NotImplementedException();
}
public Task> GetByIds(List Ids)
{
throw new NotImplementedException();
}
public Task Insert(AddTransferFileUserInput model)
{
throw new NotImplementedException();
}
public Task Inserts(List list)
{
throw new NotImplementedException();
}
public Task Update(UpdateTransferFileUserInput model)
{
throw new NotImplementedException();
}
public Task Updates(List list)
{
throw new NotImplementedException();
}
public Task UpdateSortCode(long ID, int SortCode)
{
throw new NotImplementedException();
}
public Task UpdateSorter(List Sorters)
{
throw new NotImplementedException();
}
}
}