public PhysicalpersonsController(PhysicalpersonService physicalpersonService, SaleschannelService saleschannelService, PlanService planService, ShippingwayService shippingwayService)
 {
     _physicalpersonService = physicalpersonService;
     _saleschannelService   = saleschannelService;
     _planService           = planService;
     _shippingwayService    = shippingwayService;
 }
 public CollaboratorsController(CollaboratorService collaboratorService, LegalpersonService legalpersonService, PlanService planService, SaleschannelService saleschannelService, ShippingwayService shippingwayService)
 {
     _collaboratorService = collaboratorService;
     _legalpersonService  = legalpersonService;
     _planService         = planService;
     _saleschannelService = saleschannelService;
     _shippingwayService  = shippingwayService;
 }
 public SaleschannelsController(SaleschannelService SaleschannelService)
 {
     _SaleschannelService = SaleschannelService;
 }