Catel.Test.IoC.TypeFactoryFacts.AdvancedDependencyInjectionTestClass.AdvancedDependencyInjectionTestClass C# (CSharp) Метод

AdvancedDependencyInjectionTestClass() публичный Метод

public AdvancedDependencyInjectionTestClass ( int intValue, IMessageService messageService, INavigationService navigationService ) : System
intValue int
messageService IMessageService
navigationService INavigationService
Результат System
            public AdvancedDependencyInjectionTestClass(int intValue, IMessageService messageService, INavigationService navigationService)
            {
                Argument.IsNotNull(() => messageService);
                Argument.IsNotNull(() => navigationService);

                IntValue = intValue;
            }

Same methods

TypeFactoryFacts.AdvancedDependencyInjectionTestClass::AdvancedDependencyInjectionTestClass ( int intValue, IMessageService messageService, INavigationService navigationService, IDummyDependency dependency ) : System
TypeFactoryFacts.AdvancedDependencyInjectionTestClass::AdvancedDependencyInjectionTestClass ( string stringValue, int intValue, long longValue, IMessageService messageService, INavigationService navigationService ) : System
TypeFactoryFacts.AdvancedDependencyInjectionTestClass::AdvancedDependencyInjectionTestClass ( string stringValue, int intValue, long longValue, IMessageService messageService, INavigationService navigationService, IDummyDependency dependency ) : System
TypeFactoryFacts.AdvancedDependencyInjectionTestClass