public static ucDashboard Instance(IManipulable manipulable)
 {
     if (instance == null || instance.IsDisposed)
     {
         instance = new ucDashboard(manipulable);
     }
     return(instance);
 }
Beispiel #2
0
 public static ucRegistroP Instance(IManipulable manipulable)
 {
     if (instance == null || instance.IsDisposed)
     {
         instance = new ucRegistroP(manipulable);
     }
     return(instance);
 }
 public static ucVerConsultas Instance(IManipulable manipulable)
 {
     if (instance == null || instance.IsDisposed)
     {
         instance = new ucVerConsultas(manipulable);
     }
     return(instance);
 }
 public static ucBusquedaP Instancia(IManipulable manipulable)
 {
     if (objucBusquedaP == null || objucBusquedaP.IsDisposed)
     {
         objucBusquedaP = new ucBusquedaP(manipulable);
     }
     objucBusquedaP.LoadComponents();
     return(objucBusquedaP);
 }
Beispiel #5
0
 public ucRegistroP(IManipulable manipulable)
     : base(manipulable)
 {
     InitializeComponent();
 }
 public ucVerConsultas(IManipulable manipulable)
     : base(manipulable)
 {
     InitializeComponent();
 }
 public ucBusquedaP(IManipulable manipulable)
     : base(manipulable)
 {
     InitializeComponent();
 }
        /*Receive a IOcultbale insterface as a parameter, for being able to
         * change the value of the classes who implement this interface*/

        public UcPadre(IManipulable manipulable)
        {
            InitializeComponent();
            this.manipulable = manipulable;
        }
 public ucRealizarConsulta(IManipulable manipulable)
     : base(manipulable)
 {
     InitializeComponent();
 }
Beispiel #10
0
 public ucCitasP(IManipulable manipulable)
     : base(manipulable)
 {
     InitializeComponent();
 }
 public ucDashboard(IManipulable manipulable)
     : base(manipulable)
 {
     InitializeComponent();
 }