示例#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;
 }
 public TaskController(IPresenterLayer db, IMapper mapper)
 {
     this.db     = db;
     this.mapper = mapper;
 }