示例#1
0
        public RoomRepo(BatesMotelContext databaseContext)
        {
            this.db = databaseContext;

        }
示例#2
0
        public BookingRepo(BatesMotelContext databaseContext)
        {
            this.db = databaseContext;

        }
示例#3
0
 public RoomRepo()
 {
     this.db = new BatesMotelContext();
 }
示例#4
0
 public BookingRepo()
 {
     this.db = new BatesMotelContext();
 }