public void UpdateFertilization(Fertilization fertilization) { throw new NotImplementedException(); }
public int AddFertilization(Fertilization fertilization) { _context.Fertilizations.Add(fertilization); _context.SaveChanges(); return(fertilization.Id); }