public TabelaTesteReadOnlyWithLongKeyRepository(HopContextBase context) : base(context)
 {
 }
 protected RepositoryWithGuidKeyBase(HopContextBase context, IUserContextService userContextService) : base(context, userContextService)
 {
 }
Exemplo n.º 3
0
 public PersonRepository(HopContextBase context, IUserContextService userContextService)
     : base(context, userContextService)
 {
 }
Exemplo n.º 4
0
 public InMemoryUoW(HopContextBase context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 protected RepositoryBase(HopContextBase context, IUserContextService contextService)
 {
     _context        = context;
     _contextService = contextService;
 }
 protected ReadOnlyRepositoryWithLongKeyBase(HopContextBase context) : base(context)
 {
 }
Exemplo n.º 7
0
 protected ReadOnlyRepositoryBase(HopContextBase context)
 {
     _context = context;
 }
 public TabelaTesteWithLongKeyRepository(HopContextBase context, IUserContextService userContextService) : base(context, userContextService)
 {
 }
 public TabelaTesteWithLongKeySoftDeleteRepository(HopContextBase context, IUserContextService contextService) : base(context, contextService)
 {
 }
Exemplo n.º 10
0
 public UnityOfWork(HopContextBase context, ILogProvider logProvider)
 {
     LogProvider  = logProvider;
     _context     = context;
     _transaction = null;
 }
Exemplo n.º 11
0
 public UnitOfWork(HopContextBase context, ILogger <UnitOfWork> logger)
 {
     Logger       = logger;
     _context     = context;
     _transaction = null;
 }