Advertisement
Fhernd

ConexionBDSingletion.cs

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