コード例 #1
0
ファイル: SampleService.cs プロジェクト: jserna-arl/LIMSv2
        public List<DateTime> DoGetSubmissionHistoryForLast12Months(int? customerId)
        {
            logger.Log(LogLevel.Trace, AppLib.GetCaller(logger));

            using (SampleDAO dao = new SampleDAO()) {
                return dao.GetSubmissionHistoryForLast12Months(customerId);
            }
        }