public long CreateOrUpdateUserAppRole(Entities.UserAppRole approle)
 {
     try
     {
         UserBC AppRoleBC = new UserBC();
         AppRoleBC.CreateOrUpdateUserAppRole(approle);
         return(approle.Id);
     }
     catch (Exception ex)
     {
         throw;
     }
     finally { }
 }