public ApplicationVehicleService(
     ITransactionService transactionService,
     IVehicleService domainVehicleService,
     IApplicationCatalogService catalogService)
     : base(transactionService)
 {
     DomainVehicleService = domainVehicleService;
     CatalogService       = catalogService;
 }
 public ApplicationPricelistService(
     ITransactionService transactionService,
     IPricelistService domainPricelistService,
     IPriceService domainPriceService,
     IApplicationCatalogService catalogService)
     : base(transactionService)
 {
     DomainPricelistService = domainPricelistService;
     DomainPriceService     = domainPriceService;
     CatalogService         = catalogService;
 }
 public ApplicationCargoService(
     ITransactionService transactionService,
     IMappingService mappingService,
     ICargoService domainCargoService,
     IApplicationCatalogService catalogService,
     IRegistrationNumberService registrationNumberService)
     : base(transactionService)
 {
     MappingService            = mappingService;
     DomainCargoService        = domainCargoService;
     CatalogService            = catalogService;
     RegistrationNumberService = registrationNumberService;
 }
 public CatalogController(IApplicationCatalogService service)
 {
     Service = service;
 }