示例#1
0
 public CountryRepository(MyDataBaseContext dbContext)
     : base(dbContext)
 {
 }
示例#2
0
 public HotelRoomRepository(MyDataBaseContext dbContext)
     : base(dbContext)
 {
 }
 public BaseReadOnlyRepository(MyDataBaseContext dbContext)
 {
     this.MyDBContext = dbContext;
 }
示例#4
0
 public BranchRepository(MyDataBaseContext dbContext)
     : base(dbContext)
 {
 }
示例#5
0
文件: DbService.cs 项目: s18923/Cw11
 public DbService(MyDataBaseContext context)
 {
     this.context = context;
 }
示例#6
0
 public BankRepository(MyDataBaseContext dbContext)
     : base(dbContext)
 {
 }
 public HotelPhotoRepository(MyDataBaseContext dbContext)
     : base(dbContext)
 {
 }
示例#8
0
 public UnitOfWork(MyDataBaseContext dbContext)
 {
     this._dbContext = dbContext;
 }