Ejemplo n.º 1
0
            public AdvancedDependencyInjectionTestClass(int intValue, IMessageService messageService, INavigationService navigationService,
                                                        IDummyDependency dependency)
            {
                Argument.IsNotNull(() => messageService);
                Argument.IsNotNull(() => navigationService);
                Argument.IsNotNull(() => dependency);

                IntValue   = intValue;
                Dependency = dependency;
            }
Ejemplo n.º 2
0
 public TestViewModel(IDummyDependency dependency)
 {
     Dependency = dependency;
 }
Ejemplo n.º 3
0
 public Foo2(int id, string name, IDummyDependency dummy)
 {
     Id    = id;
     Name  = name;
     Dummy = dummy;
 }
Ejemplo n.º 4
0
 public TestViewModel(int integer, IDummyDependency dependency)
 {
     Integer = integer;
     Dependency = dependency;
 }
Ejemplo n.º 5
0
 public TestViewModel(IDummyDependency dependency)
 {
     Dependency = dependency;
 }
Ejemplo n.º 6
0
 public TestViewModel(int integer, IDummyDependency dependency)
 {
     Integer    = integer;
     Dependency = dependency;
 }
Ejemplo n.º 7
0
 public ViewModelFactoryTestViewModel(IDummyDependency dependency)
 {
     Dependency = dependency;
 }
Ejemplo n.º 8
0
            public AdvancedDependencyInjectionTestClass(int intValue, IMessageService messageService, INavigationService navigationService,
                IDummyDependency dependency)
            {
                Argument.IsNotNull(() => messageService);
                Argument.IsNotNull(() => navigationService);
                Argument.IsNotNull(() => dependency);

                IntValue = intValue;
                Dependency = dependency;
            }