public System.Threading.Tasks.Task SwitchTaskAsync(tracktor.app.TContextDto context, int currentTaskID, int newTaskId) { return(base.Channel.SwitchTaskAsync(context, currentTaskID, newTaskId)); }
public System.Threading.Tasks.Task StopTaskAsync(tracktor.app.TContextDto context, int currentTaskID) { return(base.Channel.StopTaskAsync(context, currentTaskID)); }
public System.Threading.Tasks.Task StartTaskAsync(tracktor.app.TContextDto context, int newTaskID) { return(base.Channel.StartTaskAsync(context, newTaskID)); }
public System.Threading.Tasks.Task <tracktor.app.TEntryDto> GetEntryAsync(tracktor.app.TContextDto context, int entryID) { return(base.Channel.GetEntryAsync(context, entryID)); }
public System.Threading.Tasks.Task <tracktor.app.TEntryDto> UpdateEntryAsync(tracktor.app.TContextDto context, tracktor.app.TEntryDto entry) { return(base.Channel.UpdateEntryAsync(context, entry)); }
public System.Threading.Tasks.Task <tracktor.app.TProjectDto> UpdateProjectAsync(tracktor.app.TContextDto context, tracktor.app.TProjectDto project) { return(base.Channel.UpdateProjectAsync(context, project)); }
public System.Threading.Tasks.Task <tracktor.app.TTaskDto> UpdateTaskAsync(tracktor.app.TContextDto context, tracktor.app.TTaskDto task) { return(base.Channel.UpdateTaskAsync(context, task)); }
public System.Threading.Tasks.Task <tracktor.app.TReportModelDto> GetReportModelAsync(tracktor.app.TContextDto context, System.Nullable <System.DateTime> startDate, System.Nullable <System.DateTime> endDate, int projectID, int taskID) { return(base.Channel.GetReportModelAsync(context, startDate, endDate, projectID, taskID)); }
public System.Threading.Tasks.Task <tracktor.app.TEntriesModelDto> GetEntriesModelAsync(tracktor.app.TContextDto context, System.Nullable <System.DateTime> startDate, System.Nullable <System.DateTime> endDate, int projectID, int startNo, int maxEntries) { return(base.Channel.GetEntriesModelAsync(context, startDate, endDate, projectID, startNo, maxEntries)); }
public System.Threading.Tasks.Task <tracktor.app.TStatusModelDto> GetStatusModelAsync(tracktor.app.TContextDto context) { return(base.Channel.GetStatusModelAsync(context)); }