public List <InvetoryRecord> GetInvetory() { List <InvetoryRecord> record = new List <InvetoryRecord>(); var invetoryrec = new InvetoryRecord { Color = "Red", Make = "BMW", PetName = "Milou" }; record.Add(invetoryrec); return(record); }
public void InsertCar(InvetoryRecord car) { Console.WriteLine("Inserting car in details"); }