Пример #1
0
 public ExpensesController(
     IExpenseService expenseService,
     IMapper mapper,
     IFileService fileService,
     ICustomAuthService customAuthService)
 {
     _expenseService    = expenseService;
     _mapper            = mapper;
     _fileService       = fileService;
     _customAuthService = customAuthService;
 }
Пример #2
0
 public JobsController(
     IJobService jobService,
     IMapper mapper,
     IFileService fileService,
     ICustomAuthService customAuthService)
 {
     _jobService        = jobService;
     _mapper            = mapper;
     _fileService       = fileService;
     _customAuthService = customAuthService;
 }
Пример #3
0
 public FacturesController(
     IFactureService factureService,
     IMapper mapper,
     IFileService fileService,
     ICustomAuthService customAuthService)
 {
     _factureService    = factureService;
     _mapper            = mapper;
     _fileService       = fileService;
     _customAuthService = customAuthService;
 }
Пример #4
0
 public EmployeesController(
     IEmployeeService employeeService,
     IMapper mapper,
     ICustomAuthService customAuthService,
     IFileService fileService)
 {
     _employeeService   = employeeService;
     _mapper            = mapper;
     _customAuthService = customAuthService;
     _fileService       = fileService;
 }
Пример #5
0
 public UserService(AppDbContext context, ICustomAuthService customAuthService)
 {
     _context           = context;
     _customAuthService = customAuthService;
 }
Пример #6
0
 public GraphQLAuthResolver(ICustomAuthService authService)
 {
     _authService = authService;
 }
 public TemplateController(SessionService sessionService, ICustomAuthService authService)
 {
     m_SessionService = sessionService;
     m_AuthService    = authService;
 }