コード例 #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)
 {
 }
コード例 #5
0
 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)
 {
 }