Abp.EntityFramework.Repositories.AutoRepositoryTypesAttribute.AutoRepositoryTypesAttribute C# (CSharp) Метод

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

public AutoRepositoryTypesAttribute ( Type repositoryInterface, Type repositoryInterfaceWithPrimaryKey, Type repositoryImplementation, Type repositoryImplementationWithPrimaryKey ) : System
repositoryInterface System.Type
repositoryInterfaceWithPrimaryKey System.Type
repositoryImplementation System.Type
repositoryImplementationWithPrimaryKey System.Type
Результат System
        public AutoRepositoryTypesAttribute(
            Type repositoryInterface, 
            Type repositoryInterfaceWithPrimaryKey, 
            Type repositoryImplementation, 
            Type repositoryImplementationWithPrimaryKey)
        {
            RepositoryInterface = repositoryInterface;
            RepositoryInterfaceWithPrimaryKey = repositoryInterfaceWithPrimaryKey;
            RepositoryImplementation = repositoryImplementation;
            RepositoryImplementationWithPrimaryKey = repositoryImplementationWithPrimaryKey;
        }
    }

Same methods

AutoRepositoryTypesAttribute::AutoRepositoryTypesAttribute ( ) : System
AutoRepositoryTypesAttribute