コード例 #1
0
ファイル: UserBO.cs プロジェクト: prakashdgl/Indico1.0
        public static string GetNewEncryptedPassword(string password)
        {
            using (IndicoEntities objContext = new IndicoEntities())
            {
                var alParams = new ArrayList();
                alParams.Add(password);

                return(objContext.GetEncryptedPassword(password).ToList()[0].RetVal);
            }
        }