コード例 #1
0
ファイル: Sample8.cs.cs プロジェクト: itvijaykumar/MRTest
 public TimeSheetController(ITimesheetService timesheetService, IAssociateService associateService, IMembershipService membershipService, MomentaRecruitment.Common.Services.ITimesheetAssociateService timesheetAssociateService)
 {
     this.timesheetService = timesheetService;
     this.associateService = associateService;
     this.membershipService = membershipService;
     this.timesheetAssociateService = timesheetAssociateService;
     this.vatRate = Convert.ToDecimal(ConfigurationManager.AppSettings["VatRate"]);
 }
コード例 #2
0
ファイル: Sample2.cs.cs プロジェクト: itvijaykumar/MRTest
 public SchedulerController(ISchedulerService schedulerService, ITimesheetService timesheetService)
 {
     _schedulerService = schedulerService;
     _timesheetService = timesheetService;
 }
コード例 #3
0
 public AddActivityModule(ITimesheetService timesheetService)
 {
     _timesheetService = timesheetService;
 }
コード例 #4
0
 public SchedulerController(ISchedulerService schedulerService, ITimesheetService timesheetService)
 {
     _schedulerService = schedulerService;
     _timesheetService = timesheetService;
 }
コード例 #5
0
 public TimesheetController(ITimesheetService timesheetService, IEmployeeService employeeService)
 {
     _timesheetService = timesheetService ?? throw new ArgumentNullException(nameof(timesheetService));
     _employeeService  = employeeService ?? throw new ArgumentNullException(nameof(employeeService));
 }
コード例 #6
0
        public MainViewModel(ITimesheetService timesheetService)
        {
            _timesheetService = timesheetService;

            InitCommands();
        }
コード例 #7
0
 public SalaryController(AppDbContext context, ITimesheetService timesheetService)
 {
     _context          = context;
     _timesheetService = timesheetService;
 }
コード例 #8
0
 public TimesheetsController(AppDbContext context, ILogger <TimesheetsController> logger, ITimesheetService t)
 {
     _logger           = logger;
     _context          = context;
     _timesheetService = t;
 }
コード例 #9
0
ファイル: TimesheetModule.cs プロジェクト: mavazal/AppTokiota
 public TimesheetModule(IAuthenticationService authenticationService, IDialogService dialogService, ITimesheetService timesheetService, ICalendarService calendarService)
 {
     _authenticationService = authenticationService;
     _dialogService         = dialogService;
     _timesheetService      = timesheetService;
     _calendarService       = calendarService;
 }
コード例 #10
0
 public TimesheetController(ITimesheetService timesheetService, IMapper mapper)
 {
     _timesheetService = timesheetService;
     _mapper           = mapper;
 }
コード例 #11
0
 public Timesheets(ITimesheetParser parser, ITimesheetService service) => (Parser, Service) = (parser, service);
コード例 #12
0
 public ManageImputedDayModule(IAuthenticationService authenticationService, IDialogService dialogService, ITimesheetService timesheetService)
 {
     _authenticationService = authenticationService;
     _dialogService         = dialogService;
     _timesheetService      = timesheetService;
 }
コード例 #13
0
 public TimesheetController(ITimesheetService tsService, IDbSeeder dbSeeder)
 {
     _tsService = tsService;
     _dbSeeder  = dbSeeder;
 }
コード例 #14
0
 public TimesheetsController(ITimesheetService timesheetService)
 {
     _timesheetService = timesheetService;
 }
コード例 #15
0
 public TimesheetsController(ITimesheetService timesheetService, AppDbContext context)
 {
     _timesheetService = timesheetService;
     _context          = context;
 }
コード例 #16
0
        public MainViewModel(ITimesheetService timesheetService)
        {
            _timesheetService = timesheetService;

            InitCommands();
        }
コード例 #17
0
 public ManageImputedDayModule(TimesheetService timesheetService)
 {
     _timesheetService = timesheetService;
 }
コード例 #18
0
 public ProjectsHoursForPMReportGeneratorTask(ITimesheetService timesheetService)
     : base()
 {
     _timesheetService = timesheetService;
 }
コード例 #19
0
 public DashBoardModule(ITimesheetService timesheetService, IChartService chartService)
 {
     _timesheetService = timesheetService;
     _chartService     = chartService;
 }
コード例 #20
0
 public GraphController(ApplicationContext context, ITimesheetRepository repository, ITimesheetService timesheetService)
 {
     _repository       = repository;
     _context          = context;
     _timesheetService = timesheetService;
 }
コード例 #21
0
 public TimesheetController(ITimesheetService timesheetService)
 {
     _timesheetService = timesheetService;
 }
コード例 #22
0
 public TimesheetController(ITimesheetService service)
 {
     _service = service;
 }
コード例 #23
0
 public HomeController(ITimesheetService timesheetService)
 {
     _timesheetService = timesheetService ?? throw new ArgumentNullException(nameof(timesheetService));
 }
コード例 #24
0
 public TimesheetModule(ITimesheetService timesheetService, ICalendarService calendarService)
 {
     _timesheetService = timesheetService;
     _calendarService  = calendarService;
 }