Example #1
0
 public CodeMapController(IAddService4CodeMap codeMapService,
                          IUnitOfWork <DataContext> unitOfWork,
                          IGetCategories getCategoryService,
                          IGetCodeDetailService getCodeDetailService)
 {
     _codeMapService       = codeMapService;
     _getCategoryService   = getCategoryService;
     _getCodeDetailService = getCodeDetailService;
     _context = unitOfWork;
 }
Example #2
0
 public CodeMapController(IGetCategories getCategoriesService,
                          IAddService4CodeMap addCategoryService,
                          IUnitOfWork <DataContext> context,
                          IGetCodeMapService getCodeMapService,
                          IUpdateCodeStatusService updateCodeStatusService)
 {
     _getCategoriesService    = getCategoriesService;
     _addCategoryService      = addCategoryService;
     _getCodeMapService       = getCodeMapService;
     _updateCodeStatusService = updateCodeStatusService;
     _context = context;
 }