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