Example #1
0
 public CustomersRepository(SaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #2
0
 public CountriesRepository(SaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #3
0
 public AuctionsRepository(
     SaDbContext context,
     IHostingEnvironment hostingEnvironment, IMapper mapper) : base(context, mapper)
 {
     _hostingEnvironment = hostingEnvironment;
 }
Example #4
0
 public FilesRepository(SaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public GdprRecordsRepository(SaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #6
0
 public UserActivationsRepository(SaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Example #7
0
 public BaseRepository(SaDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #8
0
 public AddressesRepository(SaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }