refactor: cambiados nombres de variables y eliminada keyword asbtract no utilizada en singleton
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user