Skip to content

Instantly share code, notes, and snippets.

@tomwis
Created October 1, 2017 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomwis/04c1dfe7e1a1760ac8c7ff8e0617ef23 to your computer and use it in GitHub Desktop.
Save tomwis/04c1dfe7e1a1760ac8c7ff8e0617ef23 to your computer and use it in GitHub Desktop.
public class DashboardViewModel : ViewModelBase
{
IDbService _dbService;
INavigationService _navigationService;
IMonthService _monthService;
public DashboardViewModel(IDbService dbService, INavigationService navigationService, IMonthService monthService)
{
_dbService = dbService;
_navigationService = navigationService;
_monthService = monthService;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment