refactor: comentado que hace los genericos

This commit is contained in:
2024-04-07 20:13:17 -03:00
parent c40f19e7c7
commit 9f04a9c0af
2 changed files with 8 additions and 1 deletions

View File

@@ -11,4 +11,9 @@
<PackageReference Include="webhookSharp" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Modelo\Modelo.csproj" />
<ProjectReference Include="..\Entidades\Entidades.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,8 +1,10 @@
using System.Collections.ObjectModel;
using Modelo;
namespace Controladora
{
public abstract class ControladoraBase<T, J>
public abstract class ControladoraBase<T /*Tipo de Dato*/ ,
J /*Singleton*/>
where J : new()
{