示例#1
0
 public HoraryModel(string name, String randomId, List <CallServerModel> callServerList, ConnectionCallServerModel connectionCallServer)
 {
     this.name                 = name;
     this.randomId             = randomId;
     this.callServerList       = callServerList;
     this.connectionCallServer = connectionCallServer;
 }
示例#2
0
 public HoraryModel(string name, ConnectionCallServerModel connectionCallServer)
 {
     this.name                 = name;
     this.randomId             = idGroup + getStartId();
     this.connectionCallServer = connectionCallServer;
 }
示例#3
0
 public HoraryModel(string name)
 {
     this.name            = name;
     this.randomId        = idGroup + getStartId();
     connectionCallServer = new ConnectionCallServerModel();
 }