BLL.Site.TotalCount C# (CSharp) Method

TotalCount() public static method

public static TotalCount ( ) : string
return string
        public static string TotalCount()
        {
            using (var uow = new DAL.UnitOfWork())
            {
                return uow.SiteRepository.Count();
            }
        }