public TransactionService(
     VacationsDbContext context,
     IUsersService usersService
     )
 {
     _context      = context;
     _usersService = usersService;
 }
예제 #2
0
 public TransactionService(
     VacationsDbContext context,
     IMapper mapper,
     IUsersService usersService
     )
 {
     _mapper       = mapper;
     _context      = context;
     _usersService = usersService;
 }
 public EmployeesService(
     VacationsDbContext context,
     IMapper mapper,
     IUsersService usersService,
     IImagesService imagesService,
     ITransactionService transactionService
     )
 {
     _mapper             = mapper;
     _context            = context;
     _usersService       = usersService;
     _imagesService      = imagesService;
     _transactionService = transactionService;
 }
예제 #4
0
 public VacationsService(
     VacationsDbContext context,
     IMapper mapper,
     IUsersService usersService,
     IVacationStatusService vacationStatusService,
     UserManager <User> userManager,
     IEmployeesService employeesService,
     ITransactionService transactionService,
     IEmailSender emailSender,
     IConfiguration configuration
     )
 {
     _mapper                = mapper;
     _context               = context;
     _usersService          = usersService;
     _vacationStatusService = vacationStatusService;
     _userManager           = userManager;
     _employeesService      = employeesService;
     _transactionService    = transactionService;
     _emailSender           = emailSender;
     _configuration         = configuration;
 }
 public VacationStatusService(VacationsDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
 public ProfileService(VacationsDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
예제 #7
0
 public JobTitlesService(VacationsDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }