Beispiel #1
0
        public string generateUserId()
        {
            // =
            int li_lastGenerated = Int32.Parse(db.sp_GetLAstUserId().SingleOrDefault());
            int result           = li_lastGenerated + 1;

            return(result.ToString());
        }