Last Works on Webinar ...

This commit is contained in:
2025-11-05 05:07:24 +03:30
parent 330201023b
commit 0b0083a479
12 changed files with 1380 additions and 19 deletions
@@ -0,0 +1,23 @@
using xCommons.Configurations;
using xStringService.Base;
using xStringService.Interfaces;
using xWebinarService.Interfaces;
namespace xWebinarService.Providers
{
/// <summary>
/// a Servide to Provides Requirements for XWebinar Title Resources ...
/// </summary>
public class XWebinarTitleResourceProvider : XBaseStringResourceProvider, IXWebinarTitleResourceProvider
{
public XWebinarTitleResourceProvider(
IXStringProvider provider,
XAppConfiguration appConfiguration
) : base(
"XWEWBT",
provider,
appConfiguration
)
{ }
}
}