예제 #1
0
        public VMWxUserPoints GetWxUserByOpenid(string Openid)
        {
            WxUserDA da = new WxUserDA();

            return(da.GetWxUserByOpenid(Openid));
        }
예제 #2
0
        public int SaveWxUser(WxUserEntity wxUser, string loginName)
        {
            WxUserDA da = new WxUserDA();

            return(da.SaveWxUser(wxUser, loginName));
        }
예제 #3
0
        public List <WxUserEntity> GetWxUserListByCondition(string name, string phone, string startDate, string endDate)
        {
            WxUserDA da = new WxUserDA();

            return(da.GetWxUserListByCondition(name, phone, startDate, endDate));
        }