Exemplo n.º 1
0
 public ProcurementObjectRowRepository(AppDbContext repositoryDbContext, IBaseDALMapper mapper) : base(repositoryDbContext, mapper)
 {
 }
Exemplo n.º 2
0
 public BaseRepository(TDbContext repositoryDbContext, IBaseDALMapper mapper) : base(repositoryDbContext, mapper)
 {
 }
Exemplo n.º 3
0
 public EFBaseRepository(TDbContext dbContext, IBaseDALMapper <TDomainEntity, TDALEntity> dalMapper) : base(dbContext, dalMapper)
 {
 }
Exemplo n.º 4
0
 public EFBaseRepository(TDbContext repoDbContext, IBaseDALMapper <TDomainEntity, TDALEntity> mapper) : base(
         repoDbContext, mapper)
 {
 }
Exemplo n.º 5
0
 public HttpClientBaseService(THttpClient httpClient, string uri, IBaseDALMapper <TDomainEntity, TDALEntity> mapper) : base(
         httpClient, uri, mapper)
 {
 }