Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public sealed class ConexionBDSingleton
- {
- private static readonly ConexionBDSingleton conexion = new ConexionBDSingleton();
- private ConexionBDSingleton()
- {
- // sentencias de creación de la conexión a la BD.
- }
- public static ConexionBDSingleton Conexion ()
- {
- get
- {
- return conexion;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement