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