public ActionResult Delete(long id)
        {
            Posting posting = postingRepository.GetByPrimaryKey(id);

            posting.Delete();
            TempData["Message"] = "Posting deleted";
            return(Redirect(Request.UrlReferrer.ToString()));
        }