Ejemplo n.º 1
0
 public HomeController(ICategoryEngine categoryEngine, IPropertyEngine propertyEngine) : base(categoryEngine)
 {
     _propertyEngine = propertyEngine;
 }
Ejemplo n.º 2
0
 // GET: Base
 public BaseController(ICategoryEngine categoryEngine)
 {
     _categoryEngine = categoryEngine;
 }
Ejemplo n.º 3
0
 public AssetController(ICategoryEngine categoryEngine, IPropertyEngine propertyEngine, IPhotoEngine photoEngine)
 {
     _categoryEngine = categoryEngine;
     _propertyEngine = propertyEngine;
     _iphotoEngine   = photoEngine;
 }
Ejemplo n.º 4
0
 public CategoryManager(ICategoryEngine categoryEngine)
 {
     this.categoryEngine = categoryEngine;
 }