예제 #1
0
파일: Warning.aspx.cs 프로젝트: cnbin/HLB
    public static string GetWarning(string uname, string TitleStr)
    {
        string res = "";

        ZWL.BLL.ERPHuiBao MyModel = new ZWL.BLL.ERPHuiBao();
        res = MyModel.GetListByUserNameTitleStr(uname, TitleStr);
        return(res);
    }
예제 #2
0
파일: HuiBaoM.aspx.cs 프로젝트: cnbin/HLB
 public static string GetWarning() {
     string res = "";
     ZWL.BLL.ERPHuiBao MyModel = new ZWL.BLL.ERPHuiBao();
     res = MyModel.GetListByUserNameTitleStr(ZWL.Common.PublicMethod.GetSessionValue("UserName"), "");
     return res;
 }