Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SecaoArquivoTagAppService"/> class.
        ///     Construtor padrão de <see cref="SecaoArquivoTagAppService"/>.
        /// </summary>
        /// <param name="uow">
        ///     Contrato do Unit of Work. Veja <see cref="IUnitOfWork"/>.
        /// </param>
        /// <param name="mapper">
        ///     Contrato do AutoMapper. Veja <see cref="IMapper"/>.
        /// </param>
        /// <param name="repository">
        ///     O repositório da entidade SecaoArquivoTag. Veja <see cref="ISecaoArquivoTagRepository"/>.
        /// </param>

        public SecaoArquivoTagAppService(
            IUnitOfWork uow,
            IMapper mapper,
            ISecaoArquivoTagRepository repository)
            : base(uow, mapper, repository)
        {
        }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PropostaAppService"/> class.
 ///     Construtor padrão de <see cref="PropostaAppService"/>.
 /// </summary>
 /// <param name="uow">
 ///     Contrato do Unit of Work. Veja <see cref="IUnitOfWork"/>.
 /// </param>
 /// <param name="mapper">
 ///     Contrato do AutoMapper. Veja <see cref="IMapper"/>.
 /// </param>
 /// <param name="repository">
 ///     O repositório da entidade Proposta. Veja <see cref="IPropostaRepository"/>.
 /// </param>
 public PropostaAppService(
     IUnitOfWork uow,
     IMapper mapper,
     IPropostaRepository repository,
     ITemplateSecaoRepository templateSecaoRepository,
     IRecursoRepository recursoRepository,
     IClienteRepository clienteRepository,
     IAzureBlobService azureBlobService,
     IDocumentService documentService,
     ISecaoArquivoTagRepository secaoArquivoTagRepository)
     : base(uow, mapper, repository)
 {
     this.templateSecaoRepository   = templateSecaoRepository;
     this.recursoRepository         = recursoRepository;
     this.clienteRepository         = clienteRepository;
     this.azureBlobService          = azureBlobService;
     this.documentService           = documentService;
     this.secaoArquivoTagRepository = secaoArquivoTagRepository;
 }