示例#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();
 }