Guest User

Untitled

a guest
May 16th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. using Xamarin.Forms;
  2. using SistemaEscolar.Datos;
  3. using SistemaEscolar.Helpers;
  4.  
  5. namespace SistemaEscolar
  6. {
  7. public partial class App : Application
  8. {
  9. public App ()
  10. {
  11. InitializeComponent();
  12.  
  13. MainPage = new NavigationPage(new Paginas.PaginaListaEscuelas());
  14. }
  15.  
  16. static BaseDatos bd;
  17.  
  18. public static BaseDatos BD
  19. {
  20. get
  21. {
  22. if (bd == null)
  23. {
  24. bd = new BaseDatos(Constantes.NombreBD);
  25. }
  26. return bd;
  27. }
  28. }
  29. }
  30. }
Add Comment
Please, Sign In to add comment