public SystemsSetup(Systems systems, Pool pool)
 {
     _systems = systems;
     _pool    = pool;
 }
 public static void AddSystems(this Systems systems, Pool pool, Action <SystemsSetup> setupAction)
 {
     setupAction(new SystemsSetup(systems, pool));
 }