Example #1
0
 public CityRepository(PBSAContext context) : base(context)
 {
 }
 public BarberServiceRepository(PBSAContext context) : base(context)
 {
 }
 public RefPaymentTypeRepository(PBSAContext context) : base(context)
 {
 }
 public CustomerLocationRepository(PBSAContext context) : base(context)
 {
 }
Example #5
0
 public TransactionRepository(PBSAContext context) : base(context)
 {
 }
Example #6
0
 public BookingServiceRepository(PBSAContext context) : base(context)
 {
 }
 public DistrictRepository(PBSAContext context) : base(context)
 {
 }
Example #8
0
        private static readonly int BulkSize = 1000; //https://stackoverflow.com/questions/5940225/fastest-way-of-inserting-in-entity-framework

        public Repository(PBSAContext context)
        {
            _context    = context;
            _unitOfWork = new UnitOfWork(context);
        }
Example #9
0
 public UnitOfWork(PBSAContext dbContext)
 {
     _dbContext = dbContext;
 }
 public RefPhotoTypeRepository(PBSAContext context) : base(context)
 {
 }
 public RefCurrencyCodeRepository(PBSAContext context) : base(context)
 {
 }
Example #12
0
 public PaymentMethodRepository(PBSAContext context) : base(context)
 {
 }
Example #13
0
 public AspNetUserRepository(PBSAContext context) : base(context)
 {
 }
Example #14
0
 public RefTransactionStateRepository(PBSAContext context) : base(context)
 {
 }
 public BookingHistoryRepository(PBSAContext context) : base(context)
 {
 }
Example #16
0
 public CustomerRepository(PBSAContext context) : base(context)
 {
 }
Example #17
0
 public RefComplaintStateRepository(PBSAContext context) : base(context)
 {
 }
Example #18
0
 public BarberScheduleRepository(PBSAContext context) : base(context)
 {
 }
Example #19
0
 public WalletRepository(PBSAContext context) : base(context)
 {
 }
 public RefBookingStateRepository(PBSAContext context) : base(context)
 {
 }