Beispiel #1
0
 public LinguagemAppService(ILinguagemRepository linguagemRepository, IMapper mapper, INotificationService notificationService,
                            IArquivoIdiomaRepository arquivoIdiomaRepository)
 {
     _linguagemRepository     = linguagemRepository;
     _arquivoIdiomaRepository = arquivoIdiomaRepository;
     _mapper = mapper;
     _notificationService = notificationService;
 }
Beispiel #2
0
 public ArquivoIdiomaAppService(IArquivoIdiomaRepository arquivoIdiomaRepository, IMapper mapper, INotificationService notificationService,
                                IFileRepository fileRepository, ILinguagemRepository linguagemRepository)
 {
     _arquivoIdiomaRepository = arquivoIdiomaRepository;
     _mapper = mapper;
     _notificationService = notificationService;
     _fileRepository      = fileRepository;
     _linguagemRepository = linguagemRepository;
 }