public PatientNotification Save(PatientNotification entity)
 {
     return(_patientNotificationRepository.Save(entity));
 }
 public void Edit(PatientNotification entity)
 {
     _patientNotificationRepository.Edit(entity);
 }
 public void Delete(PatientNotification entity)
 {
     _patientNotificationRepository.Delete(entity);
 }
 public PatientNotification Save(PatientNotification entity)
 {
     return(_patientNotificationService.Save(entity));
 }
 public void Edit(PatientNotification entity)
 {
     _patientNotificationService.Edit(entity);
 }
 public void Delete(PatientNotification entity)
 {
     _patientNotificationService.Delete(entity);
 }