public DataDictionarySeederController(IReflection reflectionHelper, string assemblyName) { assemblyName.Guard("AssemblyName must not be empty or null."); reflectionHelper.Guard("ReflectionHelper must not be null."); _reflectionHelper = reflectionHelper; _assemblyName = assemblyName; }
public LookupFactory(IReflection helper, IUnitOfWork unitOfWork, string assemblyName) { assemblyName.Guard("AssemblyName must not be null"); unitOfWork.Guard("UnitOfWork must not be null."); helper.Guard("ReflectionHelper must not be null."); _helper = helper; _unitOfWork = unitOfWork; _assemblyName = assemblyName; }
public LinkedCascadeData(IReflection helper, IUnitOfWork unitOfWork, string entityModelType, string domainAssemblyName) { helper.Guard("ReflectionHelper must not be null."); unitOfWork.Guard("UnitOfWork must nit be null."); entityModelType.Guard("TypeName must not be null or empty."); domainAssemblyName.Guard("DomainAssemblyName must not be null or empty."); _helper = helper; _unitOfWork = unitOfWork; _entityModelType = entityModelType; _domainAssemblyName = domainAssemblyName; }
public DataDictionaryFactory(IReflection reflectionHelper, string assemblyName) { reflectionHelper.Guard("IReflection should not be null"); _reflectionHelper = reflectionHelper; _assemblyName = assemblyName; }
public LookupDataFactory(IReflection helper) { helper.Guard("ReflectionHelper must not be null."); _helper = helper; }
public GridSchemaFactory(IReflection reflectionHelper, string assemblyName) { reflectionHelper.Guard("IReflection should not be null"); _reflectionHelper = reflectionHelper; _assemblyName = assemblyName; }