public HostedServiceOneDecorator(MyHostedServiceDecorator next) : base(next)
 {
 }
 protected MyHostedServiceDecorator(MyHostedServiceDecorator next)
 {
     _next = next;
 }
 public MyHostedService(MyHostedServiceDecorator decorator)
 {
     _decorator = decorator;
 }