Exemplo n.º 1
0
        public MembersInfoModel GetMemberInfo(GetMembersInfoRequestModel condtion)
        {
            MembersService ms = new MembersService();

            ms.GetMemberInfo(condtion);
            return(ms.memberInfo);
        }
Exemplo n.º 2
0
        public ActionResult userdetail(GetMembersInfoRequestModel condtion)
        {
            MembersService ms = new MembersService();

            ms.GetMemberInfo(condtion);
            ViewBag.Info   = ms.memberInfo;
            ViewBag.PageId = Guid.NewGuid().ToString();
            return(View());
        }
Exemplo n.º 3
0
 public MemberInfo GetMemberInfo(string phone, string cardNo, string uid)
 {
     return(MembersService.GetMemberInfo(StoreId, CompanyId, phone, uid, cardNo));
 }