Exemplo n.º 1
0
 public override void Interact(AbstractLecture lecture)
 {
     Console.WriteLine();
     Console.WriteLine(this.GetType().Name + "\tКомпютерні мережі");
     Console.WriteLine(this.GetType().Name + "\tПрограмування С#");
     Console.WriteLine(this.GetType().Name + "\tПрограмування С++");
 }
Exemplo n.º 2
0
 public override void Interact(AbstractLecture lecture)
 {
     Console.WriteLine();
     Console.WriteLine(this.GetType().Name + "\tУправління системами, Лекція 3");
     Console.WriteLine(this.GetType().Name + "\tЕкономіка, Лекція 2");
     Console.WriteLine(this.GetType().Name + "\tАрхітектура компютерів, Лекція 9");
 }
Exemplo n.º 3
0
 public override void Interact(AbstractLecture lecture)
 {
     Console.WriteLine();
     Console.WriteLine(this.GetType().Name + "\tТеоретичні основи САПР, Лекція 1");
     Console.WriteLine(this.GetType().Name + "\tМатематичне моделювання, Лекція 2");
     Console.WriteLine(this.GetType().Name + "\tКомпютерне моделювання, Лекція 3");
     Console.WriteLine(this.GetType().Name + "\tТехнології створення ПП, Лекція 4");
     Console.WriteLine(this.GetType().Name + "\tТехнології компютерного проектування, Лекція 5");
 }
Exemplo n.º 4
0
 public Client(AbstractFactory_Kafedras factory_Kafedras)
 {
     abstractLecture = factory_Kafedras.CreateLecture();
     abstractSeminar = factory_Kafedras.CreateSeminar();
     abstractPractic = factory_Kafedras.CreatePractic();
 }
Exemplo n.º 5
0
 public abstract void Interact(AbstractLecture lecture);