public ProductManager(IContextContainer container)
     : base(container)
 {
     _productDAO = new ProductDAO(container);
     _categoryDAO = new CategoryDAO(container);
     _attributeDAO = new AttributeDAO(container);
 }
 public ProductManager(IContextContainer container)
     : base(container)
 {
     _productDAO   = new ProductDAO(container);
     _categoryDAO  = new CategoryDAO(container);
     _attributeDAO = new AttributeDAO(container);
 }
 public AttributeManager(IContextContainer container)
     : base(container)
 {
     _attributeDAO = new AttributeDAO(container);
 }
 public AttributeManager(IContextContainer container)
     : base(container)
 {
     _attributeDAO = new AttributeDAO(container);
 }