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