예제 #1
0
파일: ClubBLL.cs 프로젝트: Tyre88/SlimWeb
        public static List <ModuleLink> GetModuleLinks(int clubId)
        {
            List <ModuleLink> links = new List <ModuleLink>();

            try
            {
                links = ClubDAL.GetModuleLinks(clubId);
            }
            catch (Exception ex)
            {
                LogHelper.LogError(string.Format("Error in: GetModuleLinks"), ex, clubId);
            }
            return(links);
        }