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