/// <summary> /// Used to get the list of Menu for Normal/Regular User /// </summary> /// <returns></returns> public static List <SideBannerMaster> GetSideBannerList() { try { return(LayoutMethods.GetSideBanner()); } catch (Exception ex) { return(new List <SideBannerMaster>()); } }
/// <summary> /// Used to get the list of Menu for Normal/Regular User /// </summary> /// <returns></returns> public static List <Category> GetUserMenuList() { try { return(LayoutMethods.GetMenuList()); } catch (Exception ex) { return(new List <Category>()); } }