Business.Services.BlogService.GetById C# (CSharp) Метод

GetById() публичный Метод

public GetById ( int id ) : Blog
id int
Результат Business.Entities.Blog
        public Blog GetById(int id)
        {
            return _blogRepository.GetById(id);
        }