public MovieController(MovieRepository repo, StaffRepository staffRepo, CastingRepository castRepo, CommentRepository cmtRepo)
 {
     this._repo      = repo;
     this._staffRepo = staffRepo;
     this._castRepo  = castRepo;
     this._cmtRepo   = cmtRepo;
 }
 public CastingController(CastingRepository castingRepository)
 {
     this._castingRepository = castingRepository;
 }
 public MoviesController(MoviesRepository moviesRepository, PersonRepository personRepository, CastingRepository castingRepository)
 {
     this._moviesRepository  = moviesRepository;
     this._personRepository  = personRepository;
     this._castingRepository = castingRepository;
 }