Esempio n. 1
0
 public CidadeRepository(CorreiosContext correiosContext) : base(correiosContext)
 {
 }
Esempio n. 2
0
 public EstadoService(CorreiosContext correiosContext, IServiceWrapper serviceWrapper, IRepositoryWrapper repositoryWrapper) : base(correiosContext, serviceWrapper, repositoryWrapper)
 {
 }
Esempio n. 3
0
 protected RepositorioBase(CorreiosContext correiosContext)
 {
     this.Context = correiosContext;
 }
Esempio n. 4
0
 public TrexoRepository(CorreiosContext correiosContext) : base(correiosContext)
 {
 }
Esempio n. 5
0
 public EstadoRepository(CorreiosContext correiosContext) : base(correiosContext)
 {
 }
Esempio n. 6
0
 public RepositoryWrapper(CorreiosContext correiosContext)
 {
     this.Context = correiosContext;
 }
Esempio n. 7
0
 public ServiceWrapper(CorreiosContext correiosContext)
 {
     this.Context = correiosContext;
 }
Esempio n. 8
0
 public ServiceBase(CorreiosContext correiosContext, IServiceWrapper serviceWrapper, IRepositoryWrapper repositoryWrapper)
 {
     this.Context           = correiosContext;
     this.ServiceWrapper    = serviceWrapper;
     this.RepositoryWrapper = repositoryWrapper;
 }