BLL.User.TotalCount C# (CSharp) 메소드

TotalCount() 공개 정적인 메소드

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