using System; namespace Editor.Model { public class DataService : IDataService { public void GetData(Action callback) { // Use this to connect to the actual data service var item = new DataItem("Welcome to MVVM Light"); callback(item, null); } } }