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

            using (SampleDAO dao = new SampleDAO()) {
                return dao.GetReportableCOAs(identification, departments);
            }
        }