public CreateMovieParser(MovieDbCommand movieCmd, CastMemberDbCommand castMemberCmd, CountryDbCommand countryCmd, GenreDbCommand genreCmd) { this.movieCmd = movieCmd; this.castMemberCmd = castMemberCmd; this.countryCmd = countryCmd; this.genreCmd = genreCmd; }
public CommandsFactory( MovieDbContext dbContext, MovieDbCommand movieCmd, CastMemberDbCommand castMemberCmd, CountryDbCommand countryCmd, GenreDbCommand genreCmd) { this.dbContext = dbContext; this.movieCmd = movieCmd; this.castMemberCmd = castMemberCmd; this.countryCmd = countryCmd; this.genreCmd = genreCmd; }