Beispiel #1
0
 public TeamController(ITeamAppService teamAppService,
                       IMatchAppService matchAppService, IRafflesAppService rafflesAppService)
 {
     _teamAppService    = teamAppService;
     _matchAppService   = matchAppService;
     _rafflesAppService = rafflesAppService;
 }
Beispiel #2
0
 public TeamController(ITeamAppService teamAppService
                       , INotificationAppService notificationAppService
                       , IUserContentAppService userContentAppService)
 {
     this.teamAppService         = teamAppService;
     this.notificationAppService = notificationAppService;
     this.userContentAppService  = userContentAppService;
 }
Beispiel #3
0
 public GameController(IGameAppService gameAppService
                       , INotificationAppService notificationAppService
                       , ITeamAppService teamAppService
                       , ILocalizationAppService translationAppService) : base()
 {
     this.gameAppService         = gameAppService;
     this.notificationAppService = notificationAppService;
     this.teamAppService         = teamAppService;
     this.translationAppService  = translationAppService;
 }
Beispiel #4
0
 public CountersViewComponent(IHttpContextAccessor httpContextAccessor
                              , IGameAppService gameAppService
                              , IProfileAppService profileAppService
                              , IUserContentAppService contentService
                              , ITeamAppService teamAppService) : base(httpContextAccessor)
 {
     this.gameAppService    = gameAppService;
     this.profileAppService = profileAppService;
     this.contentService    = contentService;
     this.teamAppService    = teamAppService;
 }
Beispiel #5
0
 public TimesheetController(ITimesheetAppService appService,
                            IProjectAppService projectService,
                            IApproveLogAppService alService,
                            Holiday.IHolidayAppService holidayService,
                            IUserSettingAppService usService,
                            ITeamAppService teamService)
 {
     _appService     = appService;
     _projectService = projectService;
     _alService      = alService;
     _holidayService = holidayService;
     _usService      = usService;
     _teamService    = teamService;
 }
Beispiel #6
0
 public HomeController(IProjectAppService projectAppService, IEmployeeAppService employeeAppService, ITeamAppService teamService)
 {
     _projectAppService  = projectAppService;
     _employeeAppService = employeeAppService;
     _teamService        = teamService;
 }
Beispiel #7
0
 public TeamController(ITeamAppService teamAppService)
 {
     _teamAppService = teamAppService;
 }
Beispiel #8
0
 public UserSettingController(IUserSettingAppService usService, ITeamAppService teamService, IEmployeeAppService empService)
 {
     _usService   = usService;
     _teamService = teamService;
     _empService  = empService;
 }
Beispiel #9
0
 public TeamController(IEmployeeAppService employeeAppService, ITeamAppService teamAppService)
 {
     _employeeAppService = employeeAppService;
     _teamAppService     = teamAppService;
 }