コード例 #1
0
 public HomeController(ITimeEntryService timeEntryService, ITimesheetService timesheetService, IClockifyService clockifyService)
     : base(timeEntryService)
 {
     _timesheetService = timesheetService;
     _clockifyService  = clockifyService;
     Logger            = LogManager.GetLogger("Banner Management");
 }
コード例 #2
0
 public ClockifyApiController(IClockifyService clockifyService,
                              ITimesheetService timesheetService,
                              ISharePointUserService sharePointUserService)
 {
     _clockifyService       = clockifyService;
     _timesheetService      = timesheetService;
     _sharePointUserService = sharePointUserService;
 }
コード例 #3
0
 public UserApiController(IClockifyService clockifyService,
                          ITimesheetService timesheetService,
                          ISharePointUserService sharePointUserService,
                          IOrgChartService orgChartService)
 {
     _clockifyService       = clockifyService;
     _timesheetService      = timesheetService;
     _sharePointUserService = sharePointUserService;
     _orgChartService       = orgChartService;
 }
コード例 #4
0
 public HomeController(IClockifyService clockifyService,
                       ITimesheetService timesheetService,
                       ApplicationPartManager applicationPartManager,
                       IEmployeeService employeeService,
                       IEmployeeTitleService employeeTitleService,
                       ISharePointUserService sharePointUserService)
 {
     _clockifyService        = clockifyService;
     _timesheetService       = timesheetService;
     _applicationPartManager = applicationPartManager;
     _employeeService        = employeeService;
     _employeeTitleService   = employeeTitleService;
     _sharePointUserService  = sharePointUserService;
 }
コード例 #5
0
 public TimesheetService(IClientService clientService,
                         IEmployeeService employeeService,
                         IGroupService groupService,
                         IProjectService projectService,
                         ITimeEntryService timeEntryService,
                         IClockifyService clockifyService,
                         IUserGroupService userGroupService,
                         IProjectTaskService projectTaskService)
 {
     _clientService      = clientService;
     _employeeService    = employeeService;
     _groupService       = groupService;
     _projectService     = projectService;
     _timeEntryService   = timeEntryService;
     _clockifyService    = clockifyService;
     _userGroupService   = userGroupService;
     _projectTaskService = projectTaskService;
 }
コード例 #6
0
        public TimesheetService(IClientService clientService,
                                IEmployeeService employeeService,
                                IGroupService groupService,
                                IProjectService projectService,
                                ITimeEntryService timeEntryService,
                                IClockifyService clockifyService,
                                IUserGroupService userGroupService,
                                IProjectTaskService projectTaskService,
                                IEmployeeTitleService employeeTitleService,
                                ILoggerFactory loggerFactory)
        {
            _logger = loggerFactory.CreateLogger <TimesheetService>();

            _clientService        = clientService;
            _employeeService      = employeeService;
            _groupService         = groupService;
            _projectService       = projectService;
            _timeEntryService     = timeEntryService;
            _clockifyService      = clockifyService;
            _userGroupService     = userGroupService;
            _projectTaskService   = projectTaskService;
            _employeeTitleService = employeeTitleService;
        }