示例#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;
 }