public AdminController(IMovieListOperations operation)
 {
     this.movie = operation;
 }
 public AnonymousController(IMovieListOperations operation)
 {
     this.movieListoperation = operation;
 }
 public CustomerController(IMovieListOperations movie)
 {
     this.movie = movie;
 }