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
+14
View File
@@ -17,6 +17,7 @@ using xServices.Interfaces;
using xServices.Providers;
using xStorageService.DI;
using xStringService.DI;
using xTagService.DI;
using xTermsAndConditionsService.DI;
namespace xServices.DI
@@ -192,6 +193,12 @@ namespace xServices.DI
//
// Using Terms and Conditions Service ...
app.UseXTermsAndConditionsService();
//
// Using Tag Service ...
app.UseXTagService(
isDevelopmentEnvironment: isDevelopmentEnvironment
);
}
//
@@ -291,6 +298,13 @@ namespace xServices.DI
lifeTime: lifeTime,
configuration: configuration
);
//
// Register Tag Service ...
services.AddXTagService<XApiDbContext>(
lifeTime: lifeTime,
repositoryType: xDataService.Constants.XRepositoryType.EF
);
}
#endregion
}