Esempio n. 1
0
        public UserApplication AutenticationUser(string IdUsername, string Password, int IdAplication)
        {
            Autentication obj = new Autentication();

            try
            {
                return(obj.autenticacion(IdUsername, Password, IdAplication));
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                obj = null;
            }
        }