Пример #1
0
 public MobileRepository(StunasDBContext context)
 {
     _context = context;
 }
Пример #2
0
 public UtilitiesController(StunasDBContext context)
 {
     _context = context;
 }
Пример #3
0
 public MobileController(IMobileRepository MobileRepo, IMapper mapper, StunasDBContext context)
 {
     _mobileRepo = MobileRepo;
     _mapper     = mapper;
     _context    = context;
 }
Пример #4
0
 public UsersController(StunasDBContext context)
 {
     _context = context;
 }
 public AccountController(StunasDBContext context, IConfiguration config, IMapper mapper)
 {
     _context = context;
     _config  = config;
     _mapper  = mapper;
 }