Exemplo n.º 1
0
 public void EditPatientHeight(PatientHeight patientHeight)
 {
     patientHeight.LastModifiedDateUtc = DateTime.UtcNow;
     patientHeight.CreatedDateUtc      = DateTime.UtcNow;
     patientHeight.LastModifiedBy      = 1;
     _repository.Update(patientHeight);
 }
Exemplo n.º 2
0
 public void DeletePatientHeight(PatientHeight patientHeight)
 {
     _repository.Delete(patientHeight);
 }