public static AltaServicio GetInstancia()
 {
     if (_instancia == null)
     {
         _instancia = new AltaServicio();
     }
     return(_instancia);
 }
        private void btnEditar_Click(object sender, RoutedEventArgs e)
        {
            _altaServicio = new AltaServicio();

            if (dgServicios.SelectedItem != null)
            {
                SelectedServicio();

                _altaServicio.SetServicio(_servicioUpdate, true);
                _altaServicio.ShowDialog();
            }
            else
            {
                MessageBox.Show("Seleccione un Usuario.", "Editar Usuario", MessageBoxButton.OK, MessageBoxImage.Stop);
            }
        }
 private void btnAgregar_Click(object sender, RoutedEventArgs e)
 {
     _altaServicio = new AltaServicio();
     _altaServicio.ShowDialog();
 }