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