Example #1
0
        public ConsultationSubjectiveNoteResponse InsertUpdateConsultationSubjectiveNotes
            (ConsultationSubjectiveNotes consultationSubjectiveNotes)
        {
            var ConsultationBLObj = _Kernel.Get <IConsultationBL>();

            consultationSubjectiveNotes.Active = true;
            return(ConsultationBLObj.InsertUpdateConsultationSubjectiveNotes(consultationSubjectiveNotes));
        }
 public ConsultationSubjectiveNoteResponse InsertUpdateConsultationSubjectiveNotes(ConsultationSubjectiveNotes consultationSubjectiveNotes)
 {
     try
     {
         return(this._consultationDA.InsertUpdateConsultationSubjectiveNotes(consultationSubjectiveNotes));
     }
     catch (Exception ex)
     {
         throw;
     }
     finally
     {
         //Log
     }
 }
 public ConsultationSubjectiveNoteModel()
 {
     ConsultationSubjectiveNotesObject = new ConsultationSubjectiveNotes();
 }