DataService.cs 305 B

123456789101112131415
  1. using System;
  2. namespace Editor.Model
  3. {
  4. public class DataService : IDataService
  5. {
  6. public void GetData(Action<DataItem, Exception> callback)
  7. {
  8. // Use this to connect to the actual data service
  9. var item = new DataItem("Welcome to MVVM Light");
  10. callback(item, null);
  11. }
  12. }
  13. }