public void UpdateSerie(Serie item)
 {
     _repository.Update(item);
 }
 public void AddSerie(Serie newItem)
 {
     _repository.Add(newItem);
 }