public static bool DeletePromotion(string id)
 {
     if (string.IsNullOrEmpty(id))
     {
         return(false);
     }
     else
     {
         return(DALUserPermission.DeletePromotion(id));
     }
 }