new task changes and leaveApplcation bug fixed
This commit is contained in:
@@ -8,5 +8,6 @@ public interface IAssignRepository:IRepository<long,Assign>
|
||||
{
|
||||
|
||||
List<AssignViewModel> GetAssignsByTaskId(long id);
|
||||
|
||||
void RemoveRangeAssigns(long taskId);
|
||||
|
||||
}
|
||||
@@ -8,14 +8,18 @@ namespace AccountManagement.Domain.TaskAgg;
|
||||
public interface ITaskRepository:IRepository<long,Tasks>
|
||||
{
|
||||
EditTask GetDetails(long TaskId);
|
||||
|
||||
void Remove(long id);
|
||||
//گرفتن تمامی وظایف
|
||||
List<TaskViewModel> GetTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> GetAllRequestedTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> GetSelfTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> GetAllNotSelfIncludedTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> GetReceivedTasks(TaskSearchModel searchModel);
|
||||
List<TaskViewModel> GetSentTasks(TaskSearchModel searchModel);
|
||||
string SetTasksColors(DateTime time,bool isCancel);
|
||||
int GetRequestedTasksCount();
|
||||
TaskViewModel GetRequestDetails(long id);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user