コード例 #1
0
        public static string RetriveLoginDetails(SearchString Info)
        {
            string strResult = string.Empty;

            try
            {
                using (var Context = new backendDataContext())
                {
                    strResult = Context.USP_TL_CheckLogin(Info.strSearchString).Select(s => s.JSON_F52E2B61_18A1_11d1_B105_00805F49916B).Aggregate((p, r) => p + r);
                }
            }
            catch (Exception ex)
            {
                strResult = "";
            }

            return(strResult);
        }
コード例 #2
0
        public static List <CreateUserData> CreateUpdateUsers(SearchString RInfo)
        {
            List <CreateUserData> Info = new List <CreateUserData>();

            try
            {
                using (var Context = new backendDataContext())
                {
                    int?iErrno = 0;
                    int?id     = 0;

                    Context.USP_AddUser(RInfo.strSearchString, ref id, ref iErrno);

                    int ireqId = (int)id;
                    int ieNo   = (int)iErrno;
                    Info.Add(new CreateUserData(Convert.ToString(ireqId), Convert.ToString(ieNo)));
                }
            }
            catch (Exception ex)
            {
            }
            return(Info);
        }