Ejemplo n.º 1
0
 public CorretoraService(ICorretoraRepository CorretoraRepository,
                         ICorretoraEmailRepository CorretoraEmailRepository,
                         ICorretoraTelefoneRepository CorretoraTelefoneRepository,
                         ICorretoraEnderecoRepository CorretoraEnderecoRepository)
 {
     _CorretoraRepository         = CorretoraRepository;
     _CorretoraEmailRepository    = CorretoraEmailRepository;
     _CorretoraTelefoneRepository = CorretoraTelefoneRepository;
     _CorretoraEnderecoRepository = CorretoraEnderecoRepository;
 }
 public CorretoraApplicationService(ICorretoraRepository corretoraRepository,
                                    ICorretoraEmailRepository corretoraEmailRepository,
                                    ICorretoraTelefoneRepository corretoraTelefoneRepository,
                                    ICorretoraEnderecoRepository corretoraEndrecoRepository,
                                    ICorretoraService corretoraService, IUnitOfWork uow) : base(uow)
 {
     _corretoraRepository         = corretoraRepository;
     _corretoraEmailRepository    = corretoraEmailRepository;
     _corretoraTelefoneRepository = corretoraTelefoneRepository;
     _corretoraEndrecoRepository  = corretoraEndrecoRepository;
     _corretoraService            = corretoraService;
 }