示例#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;
 }
示例#2
0
 public ReleaseServico(IReleaseDAO releaseDAO)
 {
     _releaseDAO = releaseDAO;
 }