예제 #1
0
 void ICommand.Execute(IObserverData control)
 {
     control.Primero();
 }
예제 #2
0
 void ICommand.Execute(IObserverData control)
 {
     control.ImportarExcel();
 }
예제 #3
0
 void ICommand.Execute(IObserverData control)
 {
     control.Buscar();
 }
예제 #4
0
 void ICommand.Execute(IObserverData control)
 {
     control.Imprimir();
 }
예제 #5
0
 void ICommand.Execute(IObserverData control)
 {
     control.ExportarCsv();
 }
예제 #6
0
 void ICommand.Execute(IObserverData control)
 {
     control.Insertar();
 }
예제 #7
0
 void ICommand.Execute(IObserverData control)
 {
 }
예제 #8
0
 void ICommand.Execute(IObserverData control)
 {
     control.GrabarPendiente();
 }
예제 #9
0
 void ICommand.Execute(IObserverData control)
 {
     control.Eliminar();
 }
예제 #10
0
 void ICommand.Execute(IObserverData control)
 {
     control.Ultimo();
 }
예제 #11
0
 void ICommand.Execute(IObserverData control)
 {
     control.Siguiente();
 }
예제 #12
0
 void ICommand.Execute(IObserverData control)
 {
     control.Anterior();
 }
예제 #13
0
 void ISubjectData.UnRegister(IObserverData observer)
 {
     instancia.observersData.Remove(observer);
     activaCommandos(false);
 }
예제 #14
0
 void ISubjectData.Register(IObserverData observer)
 {
     instancia.observersData.Add(observer);
     activaCommandos(true);
 }