23 lines
644 B
C#
23 lines
644 B
C#
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
|
|
)
|
|
{ }
|
|
}
|
|
} |