Пример #1
0
 public SearchSettingRepository()
 {
     this.sheringDBContext = new SheringDBContext();
 }
Пример #2
0
 public WorkplaceOrderRepository()
 {
     this.sheringDBContext = new SheringDBContext();
 }
Пример #3
0
 public MonitoringRepository()
 {
     this.sheringDBContext = new SheringDBContext();
 }
Пример #4
0
 public ClientRepository(IMemoryCache memoryCache)
 {
     this.sheringDBContext = new SheringDBContext();
     cache = memoryCache;
 }
Пример #5
0
 public EquipmentRepository()
 {
     this.sheringDBContext = new SheringDBContext();
 }
Пример #6
0
 public LandlordRepository()
 {
     this.sheringDBContext = new SheringDBContext();
 }
Пример #7
0
 public BuildingRepository()
 {
     this.sheringDBContext = new SheringDBContext();
 }
Пример #8
0
 public AccountController(UserManager <User> userManager, IMapper mapper, SheringDBContext appDbContext)
 {
     _userManager  = userManager;
     _mapper       = mapper;
     _appDbContext = appDbContext;
 }
Пример #9
0
 public ValuesController()
 {
     sheringDBContext = new SheringDBContext();
 }