コード例 #1
0
ファイル: LayerAssembly.cs プロジェクト: jmptrader/alsing-1
        public ModuleAssembly NewModuleAssembly(string name)
        {
            var moduleAssembly = new ModuleAssemblyImpl(this, name, this.metaInfo);

            this.moduleAssemblies.Add(moduleAssembly);
            return(moduleAssembly);
        }
コード例 #2
0
ファイル: LayerAssembly.cs プロジェクト: attila3453/alsing
 public ModuleAssembly NewModuleAssembly(string name)
 {
     var moduleAssembly = new ModuleAssemblyImpl(this, name, this.metaInfo);
     this.moduleAssemblies.Add(moduleAssembly);
     return moduleAssembly;
 }
コード例 #3
0
 public ServiceDeclarationImpl(ModuleAssemblyImpl moduleAssembly)
 {
     this.moduleAssembly = moduleAssembly;
 }