public UnitOfWork(ReservationAppDBContext reservationAppContext) { ReservationAppContext = reservationAppContext; }
public ReservationRepository(ReservationAppDBContext dbContext) { Dbcontext = dbContext; }
public UnitOfWork() { this.ReservationAppContext = new ReservationAppDBContext(); }
public ContactRepository(ReservationAppDBContext context) { Dbcontext = context; }