示例#1
0
 public void Flying(IPlane plane)
 {
     if (plane != null)
     {
         int staff = StaffedPlane((IStaff)plane);
         plane.Fly();
         string massage = plane is PassengerPlane ? $"{NumberOfPassengrsEconomyClass} пассажирами економ класса и {NumberOfPassengrsBusinessClass} пассажирами бизнесс класса, а так же {staff} стюардессами" :
                          $"{WeightOfCargo} кг груза, а так же {staff} грузчиками";
         Console.WriteLine(massage);
         Console.WriteLine($"в пункт назначения: {Destination}");
     }
 }
示例#2
0
文件: CoolPlane.cs 项目: neringga/psp
 public void Fly()
 {
     _plane.Fly();
 }
示例#3
0
文件: Adapter.cs 项目: tvshevchuk/OOD
 public void Move()
 {
     plane.Fly();
 }