예제 #1
0
파일: Microwave.cs 프로젝트: Evgeniyyy/PIKS
 public Microwave(Drive drive, Power power, Notification notification)
 {
     _drive        = drive;
     _power        = power;
     _notification = notification;
 }
예제 #2
0
파일: Program.cs 프로젝트: Evgeniyyy/PIKS
        static void drive_driveevent(object sender, EventArgs e)
        {
            Drive d = (Drive)sender;

            Console.WriteLine(d.ToString());
        }