Exemple #1
0
        public ServiceResponseData SaveReDept()
        {
            string deptId   = requestData.GetData <string>(0);
            string deptName = requestData.GetData <string>(1);
            //ClientInfo.LoginRight.DeptId = Convert.ToInt32(deptId);
            //ClientInfo.LoginRight.DeptName = deptName;

            ServiceResponseData response = new ServiceResponseData();

            response.AddData(true);

            return(response);
        }