Пример #1
0
 public CategoryAreaController(
     IFileUploadUtility fileUploadUtility,
     ICategoryAreaImporter categoryAreaImporter,
     ICategoryAreaExporter categoryAreaExporter,
     ICategoryAreaService categoryAreaService)
 {
     _fileUploadUtility    = fileUploadUtility;
     _categoryAreaImporter = categoryAreaImporter;
     _categoryAreaExporter = categoryAreaExporter;
     _categoryAreaService  = categoryAreaService;
 }
Пример #2
0
 public CategoryController(
     IFileUploadUtility fileUploadUtility,
     ICategoryImporter categoryImporter,
     ICategoryExporter categoryExporter,
     ICategoryAreaService categoryAreaService,
     ICategoryService categoryService)
 {
     this._fileUploadUtility   = fileUploadUtility;
     this._categoryImporter    = categoryImporter;
     this._categoryExporter    = categoryExporter;
     this._categoryAreaService = categoryAreaService;
     this._categoryService     = categoryService;
 }
Пример #3
0
 public BookController(
     IFileUploadUtility fileUploadUtility,
     IBookImporter bookImporter,
     IBookExporter bookExporter,
     ICategoryAreaService categoryAreaService,
     ICategoryService categoryService,
     IBookService bookService)
 {
     this._fileUploadUtility   = fileUploadUtility;
     this._bookImporter        = bookImporter;
     this._bookExporter        = bookExporter;
     this._categoryAreaService = categoryAreaService;
     this._categoryService     = categoryService;
     this._bookService         = bookService;
 }
 public AutoManufacturerController(IAutoManufacturerService autoManufacturerService, ViewDataSet viewDataSet, IFileUploadUtility fileUploadUtility)
 {
     this.autoManufacturerService = autoManufacturerService;
     this.fileUploadUtility       = fileUploadUtility;
 }