public FilmeService(IFilmeRepository iFilmeRepository, IFilmeCategoriaRepository iFilmeCategoriaRepository, IFilmeElencoRepository iFilmeElencoRepository, IElencoRepository iElencoRepository, IMapper iMapper)
 {
     this.iFilmeRepository          = iFilmeRepository;
     this.iFilmeCategoriaRepository = iFilmeCategoriaRepository;
     this.iFilmeElencoRepository    = iFilmeElencoRepository;
     this.iElencoRepository         = iElencoRepository;
     this.iMapper = iMapper;
 }
Beispiel #2
0
 public ElencoAppServices(ISmartNotification notification,
                          IElencoRepository elencoRepository)
 {
     _elencoRepository = elencoRepository;
     _notification     = notification;
 }