public DeviceRepository(KsDustDbContext dbContext) : base(dbContext)
 {
 }
 public VendorRepository(KsDustDbContext dbContext) : base(dbContext)
 {
 }
Esempio n. 3
0
 public CameraRepository(KsDustDbContext dbContext) : base(dbContext)
 {
 }
Esempio n. 4
0
 public AlarmRepository(KsDustDbContext dbContext) : base(dbContext)
 {
 }
 public static T Repo <T>(KsDustDbContext dbContext) where T : class, IRepositoryBase, new()
 => new T
 {
     DbContext = dbContext
 };
Esempio n. 6
0
 public MonitorDataRepository(KsDustDbContext dbContext) : base(dbContext)
 {
 }
 public ProjectRepository(KsDustDbContext dbContext) : base(dbContext)
 {
 }