using DigitalData.Core.Contracts.Application; using DigitalData.Core.Contracts.Infrastructure; using Microsoft.AspNetCore.Mvc; namespace DigitalData.Core.API { [ApiController] [Route("api/[controller]")] public class BasicCRUDControllerBase : CRUDControllerBase where TOriginalController : CRUDControllerBase where TCRUDService : ICRUDService where TCRUDRepository : ICRUDRepository where TDto : class where TEntity : class { public BasicCRUDControllerBase(ILogger logger, TCRUDService service) : base(logger, service) { } } }