예제 #1
0
        public void Delete(DoctorIdRequest request)
        {
            DoctorData cd = new DoctorData(Db);

            cd.DeleteDoctorById(request.DoctorID);
        }
예제 #2
0
 public void DeleteDoctorById(DoctorEntity doctor)
 {
     data.DeleteDoctorById(doctor);
 }