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