Exemplo n.º 1
0
        public ProjectsViewModel(ITeamServicesClient teamServices, IApplicationNavigationService navigation)
        {
            this.teamServices = teamServices;
            this.navigation = navigation;

            Projects = new BindableCollection<ProjectViewModel>();
        }
Exemplo n.º 2
0
        public ProjectsViewModel(ITeamServicesClient teamServices, IApplicationNavigationService navigation)
        {
            this.teamServices = teamServices;
            this.navigation   = navigation;

            Projects = new BindableCollection <ProjectViewModel>();
        }
        public CurrentExpensesViewModel(
            IExpenseService expenses, 
            IApplicationNavigationService applicationNavigation,
            INotificationsService notifications)
        {
            this.expenses = expenses;
            this.applicationNavigation = applicationNavigation;
            this.notifications = notifications;

            ExpenseItems = new BindableCollection<ExpenseItemViewModel>();
        }
        public CurrentExpensesViewModel(
            IExpenseService expenses,
            IApplicationNavigationService applicationNavigation,
            INotificationsService notifications)
        {
            this.expenses = expenses;
            this.applicationNavigation = applicationNavigation;
            this.notifications         = notifications;

            ExpenseItems = new BindableCollection <ExpenseItemViewModel>();
        }
Exemplo n.º 5
0
 public LegacyLoginViewModel(ICredentialsService credentials, IAuthenticationService authentication, IApplicationNavigationService navigation)
 {
     _credentials    = credentials;
     _authentication = authentication;
     _navigation     = navigation;
 }
Exemplo n.º 6
0
 public LoginViewModel(ICredentialsService credentials, IAuthenticationService authentication, IApplicationNavigationService navigation)
 {
     this.credentials    = credentials;
     this.authentication = authentication;
     this.navigation     = navigation;
 }
Exemplo n.º 7
0
 public LoginViewModel(ICredentialsService credentials, IAuthenticationService authentication, IApplicationNavigationService navigation)
 {
     this.credentials = credentials;
     this.authentication = authentication;
     this.navigation = navigation;
 }
Exemplo n.º 8
0
 public ShellViewModel(IApplicationNavigationService navigation)
 {
     _navigation = navigation;
 }
Exemplo n.º 9
0
 public AddExpenseViewModel(IExpenseService expenses, IApplicationNavigationService applicationNavigation)
 {
     this.expenses = expenses;
     this.applicationNavigation = applicationNavigation;
 }
Exemplo n.º 10
0
 public MainViewModel(IApplicationNavigationService navigation, IDialogService dialogs, IAuthenticationService authentication)
 {
     _navigation     = navigation;
     _dialogs        = dialogs;
     _authentication = authentication;
 }
 public LoginViewModel(IApplicationNavigationService navigation)
 {
     _navigation = navigation;
 }
 public RootViewModel(IApplicationNavigationService navigation, IAuthenticationService authentication)
 {
     _navigation     = navigation;
     _authentication = authentication;
 }
Exemplo n.º 13
0
 public LoginViewModel(IAuthenticationService authentication, IApplicationNavigationService applicationNavigation)
 {
     this.authentication = authentication;
     this.applicationNavigation = applicationNavigation;
 }
Exemplo n.º 14
0
 public LoginViewModel(IAuthenticationService authentication, IApplicationNavigationService applicationNavigation)
 {
     this.authentication        = authentication;
     this.applicationNavigation = applicationNavigation;
 }
Exemplo n.º 15
0
 public AddExpenseViewModel(IExpenseService expenses, IApplicationNavigationService applicationNavigation)
 {
     this.expenses = expenses;
     this.applicationNavigation = applicationNavigation;
 }