コード例 #1
0
ファイル: TDireccion.cs プロジェクト: noedelarosa/SIC
 public TDireccion(string referencia, TSector sector){
     this.Id = 0;
     this.Referencia = referencia;
     this.Sector = sector; 
 }
コード例 #2
0
ファイル: TDireccion.cs プロジェクト: noedelarosa/SIC
 public TDireccion(int id, string referencia, TSector sector){
     this.Id = id;
     this.Referencia = referencia;
     this.Sector = sector;
 }