Exemplo n.º 1
0
 public CommResponse(
     CommDataBase data,
     int status,
     string description = null)
 {
     this.Data        = data;
     this.Status      = status;
     this.Description = description;
 }
Exemplo n.º 2
0
 public CommResponse(CommDataBase data)
     : this(data, Ack, null)
 {
 }