public void Update(Post post)
 {
     _repository.Update(post);
 }
 public void Create(Post post)
 {
     _repository.Add(post);
 }