BgEngine.Controllers.NewsletterController.GetNewsletter C# (CSharp) Method

GetNewsletter() public method

public GetNewsletter ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult GetNewsletter(int id)
        {
            return Content(NewsletterServices.FindAllEntities(n => n.NewsletterId == id,null,null).FirstOrDefault().Html);
        }