Skip to content

Instantly share code, notes, and snippets.

@DVDPT
Created February 25, 2015 23:08
Show Gist options
  • Save DVDPT/8b2c26adab618bcea652 to your computer and use it in GitHub Desktop.
Save DVDPT/8b2c26adab618bcea652 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