// api to load multiple items
 public LoadJobCollection Load(LoadInstructionCollection instructions)
 {
     var result = new LoadJobCollection();
     foreach(var inst in instructions)
     {
         var loadJob = this.Load(inst);
         loadJob.ParentCollection = result;
         result.Add(loadJob);
     }
     return result;
 }
    // api to load multiple items
    public LoadJobCollection Load(LoadInstructionCollection instructions)
    {
        var result = new LoadJobCollection();

        foreach (var inst in instructions)
        {
            var loadJob = this.Load(inst);
            loadJob.ParentCollection = result;
            result.Add(loadJob);
        }
        return(result);
    }
 public static LoadJobCollection Load(LoadInstructionCollection instructions)
 {
     return Module.Find<SinozeAssetLoader>().Load(instructions);
 }