Ejemplo n.º 1
0
 public SeverityController(IMapper mapper, IPresenterLayer db)
 {
     this.mapper = mapper;
     this.db     = db;
 }
 public TaskCategoryController(IMapper mapper, IPresenterLayer db)
 {
     this.mapper = mapper;
     this.db     = db;
 }
Ejemplo n.º 3
0
 public TaskController(IPresenterLayer db, IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }