Create() публичный статический Метод

public static Create ( ) : Doctor
Результат Doctor
 public static Doctor Create(int id, string name)
 {
     Doctor doctor = Doctor.Create();
     doctor.Id = id;
     doctor.Name = name;
     return doctor;
 }
 private void CreateDoctors()
 {
     Doctors.Add(Doctor.Create(id: 1, name: "Stomatologist"));
     Doctors.Add(Doctor.Create(id: 2, name: "Ophthalmologist"));
     Doctors.Add(Doctor.Create(id: 3, name: "Surgeon"));
 }