BgEngine.Controllers.CommentController.GetPostComments C# (CSharp) Метод

GetPostComments() приватный Метод

private GetPostComments ( int postid ) : System.Web.Mvc.PartialViewResult
postid int
Результат System.Web.Mvc.PartialViewResult
        public PartialViewResult GetPostComments(int postid)
        {
            return PartialView(CommentServices.FindAllEntities(c => c.PostId == postid,null,null));
        }