public void addCrop(Crop crop) { Crop myCrop = new Crop() { cropName = crop.cropName, cropSize = crop.cropSize }; _context.Crop.Add(myCrop); _context.SaveChanges(); }
public void addGardenLocation(GardenLocation gardenLocation, Allotment allotment) { _context.GardenLocation.Add(gardenLocation); _context.Allotment.Add(allotment); _context.SaveChanges(); }
public void addTend(TendType tend) { _context.TendType.Add(tend); _context.SaveChanges(); }