예제 #1
0
파일: Model.cs 프로젝트: allthecodes/as4j
        public SoftwareSystem AddSoftwareSystem(string location, string name)
        {
            var system = new SoftwareSystem
            {
                Id       = GetId(),
                Location = location,
                Name     = name,
                Model    = this
            };

            _elements.Add(system);

            return(system);
        }
예제 #2
0
 public ContainerView(SoftwareSystem system) : base(system)
 {
     Name = String.Format("{0} - Containers", system.Name);
 }
예제 #3
0
 public ContextView(SoftwareSystem system) : base(system)
 {
 }
예제 #4
0
파일: View.cs 프로젝트: allthecodes/as4j
 public View(SoftwareSystem system)
 {
     _system     = system;
     Description = "";
 }
예제 #5
0
 public View(SoftwareSystem system)
 {
     _system = system;
     Description = "";
 }
예제 #6
0
 public ContextView(SoftwareSystem system)
     : base(system)
 {
 }