Beispiel #1
0
        public bool InsertAddress(string address1, string address2, string name, string mobile)
        {
            UserBll bll    = new UserBll();
            int     userid = 0;

            userid = bll.GetUserIdByToken();
            if (userid > 0)
            {
                T_Address model = new T_Address();
                model.Adress     = address2;
                model.Area       = address1;
                model.Name       = name;
                model.Mobile     = mobile;
                model.CreateDate = DateTime.Now;
                model.UserId     = userid;
                AddressDal addressdal = new AddressDal();
                return(addressdal.InsertAddress(model));
            }
            else
            {
                return(false);
            }
        }