コード例 #1
0
 protected Employee(Employee e)
 {
     this.FirstName      = e.FirstName;
     this.LastName       = e.LastName;
     this.PeselNumber    = e.PeselNumber;
     this.Login          = e.Login;
     this.Password       = e.Password;
     this.Specialization = e.GetType().Name;
     this.Schedule       = new Schedule();
 }