public CreateMovieParser(MovieDbCommand movieCmd, CastMemberDbCommand castMemberCmd, CountryDbCommand countryCmd, GenreDbCommand genreCmd)
 {
     this.movieCmd      = movieCmd;
     this.castMemberCmd = castMemberCmd;
     this.countryCmd    = countryCmd;
     this.genreCmd      = genreCmd;
 }
Exemple #2
0
        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;
        }
 public CreateCastMemberParser(CastMemberDbCommand castMemberCmd)
 {
     this.castMemberCmd = castMemberCmd;
 }