Example #1
0
 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"]);
 }
Example #2
0
 public SchedulerController(ISchedulerService schedulerService, ITimesheetService timesheetService)
 {
     _schedulerService = schedulerService;
     _timesheetService = timesheetService;
 }
Example #3
0
 public AddActivityModule(ITimesheetService timesheetService)
 {
     _timesheetService = timesheetService;
 }
 public SchedulerController(ISchedulerService schedulerService, ITimesheetService timesheetService)
 {
     _schedulerService = schedulerService;
     _timesheetService = timesheetService;
 }
 public TimesheetController(ITimesheetService timesheetService, IEmployeeService employeeService)
 {
     _timesheetService = timesheetService ?? throw new ArgumentNullException(nameof(timesheetService));
     _employeeService  = employeeService ?? throw new ArgumentNullException(nameof(employeeService));
 }
Example #6
0
        public MainViewModel(ITimesheetService timesheetService)
        {
            _timesheetService = timesheetService;

            InitCommands();
        }
Example #7
0
 public SalaryController(AppDbContext context, ITimesheetService timesheetService)
 {
     _context          = context;
     _timesheetService = timesheetService;
 }
Example #8
0
 public TimesheetsController(AppDbContext context, ILogger <TimesheetsController> logger, ITimesheetService t)
 {
     _logger           = logger;
     _context          = context;
     _timesheetService = t;
 }
Example #9
0
 public TimesheetModule(IAuthenticationService authenticationService, IDialogService dialogService, ITimesheetService timesheetService, ICalendarService calendarService)
 {
     _authenticationService = authenticationService;
     _dialogService         = dialogService;
     _timesheetService      = timesheetService;
     _calendarService       = calendarService;
 }
Example #10
0
 public TimesheetController(ITimesheetService timesheetService, IMapper mapper)
 {
     _timesheetService = timesheetService;
     _mapper           = mapper;
 }
 public Timesheets(ITimesheetParser parser, ITimesheetService service) => (Parser, Service) = (parser, service);
Example #12
0
 public ManageImputedDayModule(IAuthenticationService authenticationService, IDialogService dialogService, ITimesheetService timesheetService)
 {
     _authenticationService = authenticationService;
     _dialogService         = dialogService;
     _timesheetService      = timesheetService;
 }
 public TimesheetController(ITimesheetService tsService, IDbSeeder dbSeeder)
 {
     _tsService = tsService;
     _dbSeeder  = dbSeeder;
 }
 public TimesheetsController(ITimesheetService timesheetService)
 {
     _timesheetService = timesheetService;
 }
Example #15
0
 public TimesheetsController(ITimesheetService timesheetService, AppDbContext context)
 {
     _timesheetService = timesheetService;
     _context          = context;
 }
Example #16
0
        public MainViewModel(ITimesheetService timesheetService)
        {
            _timesheetService = timesheetService;

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