コード例 #1
0
 public ExpensesController(
     IExpenseService expenseService,
     IMapper mapper,
     IFileService fileService,
     ICustomAuthService customAuthService)
 {
     _expenseService    = expenseService;
     _mapper            = mapper;
     _fileService       = fileService;
     _customAuthService = customAuthService;
 }
コード例 #2
0
ファイル: JobsController.cs プロジェクト: war-man/isoplan
 public JobsController(
     IJobService jobService,
     IMapper mapper,
     IFileService fileService,
     ICustomAuthService customAuthService)
 {
     _jobService        = jobService;
     _mapper            = mapper;
     _fileService       = fileService;
     _customAuthService = customAuthService;
 }
コード例 #3
0
ファイル: FacturesController.cs プロジェクト: war-man/isoplan
 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;
 }
コード例 #7
0
 public TemplateController(SessionService sessionService, ICustomAuthService authService)
 {
     m_SessionService = sessionService;
     m_AuthService    = authService;
 }