public LogRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #2
0
 public UnitOfWork(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #3
0
 public QuestionRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public AnswerRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public InvoiceRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public EmployeeRepository(ETourDbContext dbContext, RoleManager <Role> roleManager)
 {
     _dbContext   = dbContext;
     _roleManager = roleManager;
 }
 public BookingRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public PostRepository(ETourDbContext dbContext, IRemoteFileStorageHandler remoteFileStorageHandler, HtmlDocument doc)
 {
     _dbContext = dbContext;
     _remoteFileStorageHandler = remoteFileStorageHandler;
     _doc = doc;
 }
 public TourRepository(ETourDbContext dbContext, IRemoteFileStorageHandler remoteFileStorageHandler)
 {
     _dbContext = dbContext;
     _remoteFileStorageHandler = remoteFileStorageHandler;
 }
 public CustomerRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public DiscountRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public TourReviewRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #13
0
 public TripRepository(ETourDbContext dbContext)
 {
     _dbContext = dbContext;
 }