goldnarms / ApplabTodo

MIT License
2 stars 0 forks source link

Lag en FakeDataservice under Tests prosjektet #40

Open goldnarms opened 9 years ago

goldnarms commented 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> ();
    }