refactor: cambiados nombres de variables y eliminada keyword asbtract no utilizada en singleton

This commit is contained in:
2024-08-11 18:21:30 -03:00
parent b5b59eb2fd
commit a51731df7b
9 changed files with 19 additions and 17 deletions

View File

@@ -4,7 +4,7 @@ using Modelo;
namespace Controladora
{
public abstract class Singleton<T> where T : new()
public class Singleton<T> where T : new()
{
// Singleton thread-safe por si quiero usar "Parallel"
private static T instance = new T();