コード例 #1
0
        public Footer GetDetail(int id)
        {
            if (id == 0)
            {
                return(null);
            }
            var footer = _footerAdminRepository.GetDetail(id);

            return(footer);
        }
コード例 #2
0
 public Footer GetDetail(int id)
 {
     if (id == 0) return null;
     var footer = _footerAdminRepository.GetDetail(id);
     return footer;
 }