add support of xWebinar Service ...
This commit is contained in:
@@ -21,6 +21,7 @@ using xStorageService.DI;
|
||||
using xStringService.DI;
|
||||
using xTagService.DI;
|
||||
using xTermsAndConditionsService.DI;
|
||||
using xWebinarService.DI;
|
||||
|
||||
namespace xServices.DI
|
||||
{
|
||||
@@ -213,6 +214,12 @@ namespace xServices.DI
|
||||
app.UseXCategoryService(
|
||||
isDevelopmentEnvironment: isDevelopmentEnvironment
|
||||
);
|
||||
|
||||
//
|
||||
// Using XWebinar Service ...
|
||||
app.UsexWebinarService(
|
||||
isDevelopmentEnvironment: isDevelopmentEnvironment
|
||||
);
|
||||
}
|
||||
|
||||
//
|
||||
@@ -333,11 +340,18 @@ namespace xServices.DI
|
||||
|
||||
//
|
||||
// Register Category Service ...
|
||||
services.AddXCategoryServiceConfiguration(configuration);
|
||||
services.AddXCategoryServiceConfiguration(configuration);
|
||||
services.AddXCategoryService<XApiDbContext>(
|
||||
lifeTime: lifeTime,
|
||||
repositoryType: repositoryType
|
||||
);
|
||||
|
||||
//
|
||||
// Register Webinar Service ...
|
||||
services.AddXWebinarService<XApiDbContext>(
|
||||
lifeTime: lifeTime,
|
||||
repositoryType: repositoryType
|
||||
);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user