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

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