Advertisement
Fhernd

ConexionBDSingleton.cs

Nov 15th, 2017
883
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. public sealed class ConexionBDSingleton
  2. {
  3.     private static ConexionBDSingleton conexion;
  4.  
  5.     private ConexionBDSingleton()
  6.     {
  7.         // sentencias de creación de la conexión a la BD.
  8.     }
  9.    
  10.     static ConexionBDSingleton()
  11.     {
  12.         conexion = ConexionBDSingleton();
  13.     }
  14.    
  15.     public static ConexionBDSingleton Conexion ()
  16.     {
  17.         get
  18.         {
  19.             return conexion;
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement