18 lines
662 B
C#
18 lines
662 B
C#
using DigitalData.Core.API;
|
|
using DigitalData.Core.Abstraction.Application;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using DigitalData.Core.Abstractions;
|
|
|
|
namespace EnvelopeGenerator.Web.Controllers.Test
|
|
{
|
|
[ApiController]
|
|
[Route("api/test/[controller]")]
|
|
public class TestControllerBase<TCRUDService, TDto, TEntity, TId> : BasicCRUDControllerBase<TCRUDService, TDto, TEntity, TId>
|
|
where TCRUDService : ICRUDService<TDto, TDto, TEntity, TId>
|
|
where TDto : class, IUnique<TId> where TEntity : class, IUnique<TId>
|
|
{
|
|
public TestControllerBase(ILogger logger, TCRUDService service) : base(logger, service)
|
|
{
|
|
}
|
|
}
|
|
} |