Exemplo n.º 1
0
 public DomainHelper(IPlasticService plasticRepository, ILocationSourceService locationRepository, IPlasticSpoolService spoolRepository, IPrintableObjectService printableRepository)
 {
     _plasticRepository   = plasticRepository;
     _locationRepository  = locationRepository;
     _spoolRepository     = spoolRepository;
     _printableRepository = printableRepository;
 }
Exemplo n.º 2
0
 public PlasticSpoolController(IPlasticSpoolService plasticSpoolService, IPlasticService plasticService)
 {
     _plasticSpoolService = plasticSpoolService;
     _plasticService      = plasticService;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PlasticController"/> class.
 /// </summary>
 /// <param name="plasticService">
 /// The plastic Service.
 /// </param>
 public PlasticController(IPlasticService plasticService)
 {
     this.plasticService = plasticService;
 }
Exemplo n.º 4
0
 public PlasticController(IPlasticService plasticService, ILocationSourceService locationSourceService)
 {
     _plasticService        = plasticService;
     _locationSourceService = locationSourceService;
 }