implement all Data Helper Requirements ...

This commit is contained in:
2025-11-04 01:49:13 +03:30
parent cad42da9e1
commit 71f695baf8
16 changed files with 116 additions and 116 deletions
@@ -1,12 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using xDataService.Configuration;
using xDataService.GraphQL;
using xWebinarService.Interfaces.Entities;
using xWebinarService.Models.Entities;
namespace xWebinarService.DataHelper.GraphQL
{
public class XWebinarGraphQLTypeHelper
public class XWebinarGraphQLTypeHelper : XBaseGraphQLTypeHelper<XWebinar, Guid>, IXWebinarGraphQLTypeHelper
{
public XWebinarGraphQLTypeHelper(
XDataServiceConfiguration configuration
) : base(configuration)
{ }
public override string GetInQueryCollectionName()
{
return "webinars";
}
public override string GetInQuerySingleName()
{
return "webinar";
}
}
}