Example #1
0
 public UnitOfWork(ReservationAppDBContext reservationAppContext)
 {
     ReservationAppContext = reservationAppContext;
 }
 public ReservationRepository(ReservationAppDBContext dbContext)
 {
     Dbcontext = dbContext;
 }
Example #3
0
 public UnitOfWork()
 {
     this.ReservationAppContext = new ReservationAppDBContext();
 }
Example #4
0
 public ContactRepository(ReservationAppDBContext context)
 {
     Dbcontext = context;
 }