Ejemplo n.º 1
0
 public ServerSystem(string name, GatewaySystem gateway, List <WebSecSystem> secuirty, ServerType type)
 {
     Name     = name;
     Gateway  = gateway;
     Security = secuirty;
     Type     = type;
 }
Ejemplo n.º 2
0
 public PeopleSystem(string name, string personid, string phonenumber, string ipaddress, string maritalstatus, string personalstatus, int iq, Texture2D photo, DOBSystem dob, CollageSystem collage, UniversitySystem university, BankSystem bankdetails, GatewaySystem gateway)
 {
     Name           = name;
     PersonID       = personid;
     PhoneNumber    = phonenumber;
     IPAddress      = ipaddress;
     MaritalStatus  = maritalstatus;
     PersonalStatus = personalstatus;
     IQ             = iq;
     Photo          = photo;
     DOB            = dob;
     Collage        = collage;
     University     = university;
     BankDetails    = bankdetails;
     Gateway        = gateway;
 }