예제 #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();
 }