public AggregatedComponentAffectingEntity(
     string partitionKey,
     string rowKey,
     TAggregation entity,
     string affectedComponentPath,
     DateTime startTime,
     ComponentStatus affectedComponentStatus = ComponentStatus.Up,
     DateTime?endTime = null)
     : base(
         partitionKey,
         rowKey,
         affectedComponentPath,
         startTime,
         affectedComponentStatus,
         endTime)
 {
     _parent = new ChildEntity <TAggregation>(partitionKey, rowKey, entity);
 }
 public AggregatedComponentAffectingEntity()
 {
     _parent = new ChildEntity <TAggregation>();
 }