Beispiel #1
0
        public TaskController(ITaskService taskService, IPersonService personService, IStatusService statusService)
        {
            this.taskService   = taskService;
            this.personService = personService;
            this.statusService = statusService;

            mapper = MapperConfig.GetMapperResult();
        }
Beispiel #2
0
 public AdminController(IUserService userService)
 {
     this.userService = userService;
     mapper           = MapperConfig.GetMapperResult();
 }
Beispiel #3
0
 public HomeController(IUserService userService, ITaskService taskService)
 {
     this.userService = userService;
     this.taskService = taskService;
     mapper           = MapperConfig.GetMapperResult();
 }
Beispiel #4
0
 public TeamController(ITeamService teamService, IPersonService personService)
 {
     this.teamService   = teamService;
     this.personService = personService;
     mapper             = MapperConfig.GetMapperResult();
 }