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