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
+32
View File
@@ -0,0 +1,32 @@
using System;
using System.Linq;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.Extensions.Logging;
using xCommons.Configurations;
using xCommons.Providers;
using xTagService.Controllers;
using xTagService.Interfaces.Entities;
using xTagService.Models.Entities;
namespace xServices.Controllers
{
public class XTagRepositoryController : XTagRepositoryControllerBase
{
public XTagRepositoryController(
ILogger<XTagRepositoryController> logger,
XAppConfiguration appConfiguration,
XValidationProvider validationProvider,
IXTagRepository repository,
Func<IQueryable<XTag>, IOrderedQueryable<XTag>> defaultOrderBuilder = null,
Func<IQueryable<XTag>, IIncludableQueryable<XTag, object>> defaultIncludeBuilder = null
) : base(
logger,
appConfiguration,
validationProvider,
repository,
defaultOrderBuilder,
defaultIncludeBuilder
)
{ }
}
}