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