Esempio n. 1
0
 public RegisterMovieCommand(IDataService dataService, JsonOutputController outputController, IReader reader, IWriter writer)
 {
     this.dataService      = dataService;
     this.outputController = outputController;
     this.reader           = reader;
     this.writer           = writer;
     this.collectedData    = new List <string>();
 }
 public RemoveMovieCommand(IDataService dataService, JsonOutputController outputController, IReader reader, IWriter writer, SearchCommand searchCommand)
 {
     this.dataService      = dataService;
     this.outputController = outputController;
     this.reader           = reader;
     this.writer           = writer;
     this.searchCommand    = searchCommand;
     this.collectedData    = new List <string>();
 }