예제 #1
0
 /**
  * Constructor with Software
  * */
 public Software(Software s)
 {
     _id = s.Id;
     _name = s.Name;
     _link = s.Link;
     _charac = s.Charac;
 }
예제 #2
0
 public void AddSoftware(Software s)
 {
     _software_list.Add(s.Id, s);
 }