Esempio n. 1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="mapper"></param>
 /// <param name="taskService"></param>
 /// <param name="taskCommentService"></param>
 /// <param name="userIdentityService"></param>
 public TasksApiController(IMapper mapper,
                           ITaskService taskService,
                           ITaskCommentService taskCommentService,
                           IUserIdentityService userIdentityService)
     : base(mapper, userIdentityService)
 {
     _taskService        = taskService;
     _taskCommentService = taskCommentService;
 }
Esempio n. 2
0
 public CreateEditModel(ITaskItemService taskItemService, ITaskCommentService commentService, IUserRepository userRepo)
 {
     _taskItemService = taskItemService;
     _commentService  = commentService;
     _userRepo        = userRepo;
 }