public UsersService(
     CashRollDbContext db,
     IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }
 public CurrenciesService(
     CashRollDbContext db,
     IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }
 public SeederController(
     CashRollDbContext db,
     UserManager <User> userManager,
     RoleManager <Role> roleManager)
 {
     this.userManager = userManager;
     this.roleManager = roleManager;
     this.db          = db;
 }
Пример #4
0
 public RollsService(
     CashRollDbContext db,
     ICurrenciesService currenciesService,
     IMapper mapper)
 {
     this.db = db;
     this.currenciesService = currenciesService;
     this.mapper            = mapper;
 }
Пример #5
0
 public ErrorsService(
     CashRollDbContext db)
 {
     this.db = db;
 }