public AttributeTypeBusinessEngine(IDataRepositoryFactory data_repo_fact, ICache cache, IEntityServiceFactory ent_serv_fact)
     : base(data_repo_fact, null, ent_serv_fact)
 {
     _cache          = cache;
     _repo_attr_type = _data_repository_factory.GetDataRepository <IAttributeTypeRepository>();
     _attr_type_es   = _entity_service_factory.GetEntityService <IAttributeTypeEntityService>();
     GetTypes();
 }
 public AttributeTypeController(IAttributeTypeRepository AttributeTypeRepo, ILoggerFactory loggerFactory)
 {
     _AttributeTypeRepo = AttributeTypeRepo;
     _loggerFactory     = loggerFactory;
 }
Ejemplo n.º 3
0
 public AttributeController(IAttributeTypeRepository typeRepo, IAttributeRepository attributeRepo)
 {
     _attributeRepo     = attributeRepo;
     _attributeTypeRepo = typeRepo;
 }