Example #1
0
 public AdministradorServico(IFilmeDAO filmeDAO, IReleaseDAO releaseDAO, ILegendaDAO legendaDAO, IUsuarioDAO usuarioDAO, IBancoDadosCreator bancoDadosCreator, IImdbInfoDAO imdbInfoDAO, IArquivoDAO arquivoDAO)
 {
     _filmeDAO = filmeDAO;
     _releaseDAO = releaseDAO;
     _legendaDAO = legendaDAO;
     _usuarioDAO = usuarioDAO;
     _bancoDadosCreator = bancoDadosCreator;
     _imdbInfoDAO = imdbInfoDAO;
     _arquivoDAO = arquivoDAO;
 }
Example #2
0
 public ArquivoServico(IArquiRepo arquiRepo, IArquivoDAO arquivoDAO)
 {
     _arquiRepo = arquiRepo;
     _arquivoDAO = arquivoDAO;
 }