public UsersML GetEntityById(int Id) { try { UsersML UsersML = UsersDAL.GetEntityById(Id); UsersML.Password = conexion.DesEncriptar(UsersML.Password); return(UsersML); } catch (Exception ex) { throw new Exception(String.Format("{0}.GetIdEntity: {1}", core, ex)); } }