Open goldnarms opened 9 years ago
Skal implementere IDataService. Bruk f.eks. en Dictionary til å ta vare på data.
private Dictionary<int, TodoItem> _todoItems; private int _idIterator = 0; public FakeDataService () { _todoItems = new Dictionary<int, TodoItem> (); }
Skal implementere IDataService. Bruk f.eks. en Dictionary til å ta vare på data.