AutomatedCaseworker.Data.CaseRepository.UpdateNotes C# (CSharp) Метод

UpdateNotes() публичный Метод

public UpdateNotes ( System.Guid caseId, string notes ) : void
caseId System.Guid
notes string
Результат void
        public void UpdateNotes(Guid caseId, string notes)
        {
            var @case = _session.Get<Case>(caseId);
            @case.Notes = notes;
            _session.Update(@case);
        }