// Copyright (c) Nate McMaster. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Contracts; namespace ServiceImplementation { public class OverrideFruiteService : IFruitService { public List GetFruits() { return new List() { new Fruit { Name="Banana" } }; } } }