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