コード例 #1
0
        public int GetFDIPostWOIssueCount(string sWhere)
        {
            Expression <Func <FDIPostWOIssue, bool> > whereLamda = SerializerHelper.ConvertParamWhereToLinq <FDIPostWOIssue>(sWhere);

            using (IFDIPostWOIssueBLL FDIPostWOIssueBLL = BLLContainer.Resolve <IFDIPostWOIssueBLL>())
            {
                return(FDIPostWOIssueBLL.GetCount(whereLamda));
            }
        }