Beispiel #1
0
 public win_direccion(Empresa.Docente.tdocente  docente){
     this.Direccion = docente.Direccion;
     InitializeComponent();
     //llenando provincias.
     com_provincia.ItemsSource = Empresa.Comun.Provincia.GetInstance();
     this._origendireccion = this.Direccion;
 }
Beispiel #2
0
 public win_direccion(Empresa.Comun.TDireccionAsignada direccion){
     InitializeComponent();
     //llenando provincias.
     com_provincia.ItemsSource = Empresa.Comun.Provincia.GetInstance();
     this.Direccion = direccion;
     this._origendireccion = this.Direccion;
 }
Beispiel #3
0
 private void But_Cerrar_Click(object sender, RoutedEventArgs e){
     this.Direccion = this._origendireccion;
     this.Hide();
 }