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