Skip to content

Instantly share code, notes, and snippets.

@DVDPT
Last active August 29, 2015 14:16
Show Gist options
  • Save DVDPT/e833b0cbdb5aa23dc34f to your computer and use it in GitHub Desktop.
Save DVDPT/e833b0cbdb5aa23dc34f to your computer and use it in GitHub Desktop.
public interface IDataController
{
Task Load();
Task Save();
}
public abstract class AppViewModelBase : ViewModelBase //MVVM Light
{
(...)
protected abstract void Save(IStorage storage);
protected abstract void Load(IStorage storage);
(...)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment