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));
        }