This commit is contained in:
2026-05-28 02:31:21 +03:30
parent 0e57cba3be
commit 93aafe24f8
7 changed files with 150 additions and 1 deletions
@@ -0,0 +1,35 @@
using System;
using System.Linq;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.Extensions.Logging;
using xCommons.Configurations;
using xCommons.Providers;
using xIdentityService.Interfaces;
using xTagService.Controllers;
using xTagService.Interfaces.Entities;
using xTagService.Models.Entities;
namespace xServices.Controllers
{
public class XTagRepositoryProviderController : XTagRepositoryProviderControllerBase
{
public XTagRepositoryProviderController(
ILogger<XTagRepositoryProviderController> logger,
XAppConfiguration appConfiguration,
IXIdentityProvider identityProvider,
XValidationProvider validationProvider,
IXTagRepositoryProvider provider,
Func<IQueryable<XTag>, IOrderedQueryable<XTag>> defaultOrderBuilder = null,
Func<IQueryable<XTag>, IIncludableQueryable<XTag, object>> defaultIncludeBuilder = null
) : base(
logger,
appConfiguration,
identityProvider,
validationProvider,
provider,
defaultOrderBuilder,
defaultIncludeBuilder
)
{ }
}
}