Orc.NuGetExplorer.PackageOperationContextService.PackageOperationContextService C# (CSharp) Method

PackageOperationContextService() public method

public PackageOperationContextService ( IPackageOperationNotificationService packageOperationNotificationService, ITypeFactory typeFactory ) : System
packageOperationNotificationService IPackageOperationNotificationService
typeFactory ITypeFactory
return System
        public PackageOperationContextService(IPackageOperationNotificationService packageOperationNotificationService, ITypeFactory typeFactory)
        {
            Argument.IsNotNull(() => packageOperationNotificationService);
            Argument.IsNotNull(() => typeFactory);

            _packageOperationNotificationService = packageOperationNotificationService;
            _typeFactory = typeFactory;
        }
        #endregion