/// <summary> /// Method for get an specific post by id /// </summary> /// <param name="id"></param> /// <returns></returns> public Post Get(int id) { return(Repo.GetById(id)); }