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

            using (SampleDAO dao = new SampleDAO())
            {
                return dao.ImportSample(requestId, identification);
            }
        }