Ejemplo n.º 1
0
        public static bool Delete(Int32 userId, Byte passwordNumber)
        {
            UserPassword userPassword = new UserPassword();

            if (userPassword.Load(userId, passwordNumber))
            {
                return(userPassword.Delete());
            }
            return(false);
        }
Ejemplo n.º 2
0
 public static bool Delete(UserPassword userPassword)
 {
     return(userPassword.Delete());
 }