public Doctor Create(Doctor entity) { Validate(entity); return(_doctorRepository.Create(entity)); }
public Doctor Create(Doctor doctor) => _repository.Create(doctor);