コード例 #1
0
ファイル: SystemService.cs プロジェクト: jserna-arl/LIMSv2
        public int DoSaveNotes(SmartCollection<StandardNote> notes, Identification identification)
        {
            logger.Log(LogLevel.Trace, AppLib.GetCaller(logger));

            using (SystemDAO dao = new SystemDAO())
            {
                return dao.SaveNotes(notes, identification);
            }
        }