예제 #1
0
 public AuthController(UserManager <AppUser> userManager, SignInManager <AppUser> signInManager, IOptions <ApplicationSettings> appSettings, e002022Context context,
                       IEmailService emailService)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _appSettings   = appSettings.Value;
     _context       = context;
     _emailService  = emailService;
 }
예제 #2
0
 public CurrencyService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #3
0
 public PositionService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #4
0
 public ServiceService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #5
0
 public MeasureUnitService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #6
0
 public OfferServicesService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #7
0
 public ProjectTasksService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #8
0
 public TransactionService(e002022Context context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }