Exemple #1
0
 public int UpdateCurrentPatientScreening(PatientScreening psc)
 {
     try
     {
         return(_patientScreening.UpdatePatientScreening(psc));
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemple #2
0
        public int UpdatePatientScreening(int id, DateTime visitDate, int screeningTypeId, int screeningDone, DateTime screeningDate, int screeningCategoryId, int screeningValueId, string comment)
        {
            try
            {
                var PS = new PatientScreening()
                {
                    Id                  = id,
                    VisitDate           = visitDate,
                    ScreeningTypeId     = screeningTypeId,
                    ScreeningDone       = screeningDone,
                    ScreeningDate       = screeningDate,
                    ScreeningCategoryId = screeningCategoryId,
                    ScreeningValueId    = screeningValueId,
                    Comment             = comment
                };

                return(_patientScreening.UpdatePatientScreening(PS));
            }
            catch (Exception)
            {
                throw;
            }
        }