Example #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="LinguagemAppService"/> class.
        ///     Construtor padrão de <see cref="LinguagemAppService"/>.
        /// </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 Linguagem. Veja <see cref="ILinguagemRepository"/>.
        /// </param>

        public LinguagemAppService(
            IUnitOfWork uow,
            IMapper mapper,
            ILinguagemRepository repository)
            : base(uow, mapper, repository)
        {
        }
Example #2
0
 public LinguagemAppService(ILinguagemRepository linguagemRepository, IMapper mapper, INotificationService notificationService,
                            IArquivoIdiomaRepository arquivoIdiomaRepository)
 {
     _linguagemRepository     = linguagemRepository;
     _arquivoIdiomaRepository = arquivoIdiomaRepository;
     _mapper = mapper;
     _notificationService = notificationService;
 }
Example #3
0
 public ArquivoIdiomaAppService(IArquivoIdiomaRepository arquivoIdiomaRepository, IMapper mapper, INotificationService notificationService,
                                IFileRepository fileRepository, ILinguagemRepository linguagemRepository)
 {
     _arquivoIdiomaRepository = arquivoIdiomaRepository;
     _mapper = mapper;
     _notificationService = notificationService;
     _fileRepository      = fileRepository;
     _linguagemRepository = linguagemRepository;
 }