Esempio n. 1
0
        public void Delete(DoctorIdRequest request)
        {
            DoctorData cd = new DoctorData(Db);

            cd.DeleteDoctorById(request.DoctorID);
        }
Esempio n. 2
0
 public void DeleteDoctorById(DoctorEntity doctor)
 {
     data.DeleteDoctorById(doctor);
 }