Пример #1
0
 public Library(string ID, string Code, string LibName, Total_Amount Total)
 {
     this.ID      = ID;
     this.LibName = LibName;
     this.Code    = Code;
     this.Total   = Total;
 }
Пример #2
0
 public Location(string LOCNAME, string ID, string GroupID,
                 string LibID, string Symbol, string Code, Total_Amount Total)
 {
     this.LOCNAME = LOCNAME;
     this.ID      = ID;
     this.GroupID = GroupID;
     this.LibID   = LibID;
     this.Symbol  = Symbol;
     this.Code    = Code;
     this.Total   = Total;
 }