protected Command(string input, string[] data, Tester judge, StudentsRepository repository, DownloadManager downloadManager, IOManager inputOutputManager) { this.Input = input; this.Data = data; this.judge = judge; this.repository = repository; this.downloadManager = downloadManager; this.inputOutputManager = inputOutputManager; }
static void Main(string[] args) { //Console.WriteLine("First line in a program"); //var x = 0; //var y = 12 / x; //Console.WriteLine("After the division"); Tester t = new Tester(); t.Method1(); Console.ReadLine(); }
static void Main(string[] args) { /* Console.WriteLine("First line of the program"); var x = 0; var y = 12/x; Console.WriteLine("After the division"); */ Tester t = new Tester(); t.Method(); }
public PrintFilteredStudentsCommand(string input, string[] data, Tester judge, StudentsRepository repository, DownloadManager downloadManager, IOManager inputOutputManager) : base(input, data, judge, repository, downloadManager, inputOutputManager) { }
public ChangeAbsolutePathCommand(string input, string[] data, Tester judge, StudentsRepository repository, DownloadManager downloadManager, IOManager inputOutputManager) : base(input, data, judge, repository, downloadManager, inputOutputManager) { }
static void Main(string[] args) { Tester t = new Tester(); t.Method1(); }