Get Specified Item Tags ...
This commit is contained in:
@@ -6,6 +6,7 @@ using Microsoft.Extensions.DependencyInjection;
|
||||
using xCommons.Extensions;
|
||||
using xDataService.DI;
|
||||
using xDataService.Models;
|
||||
using xFileService.DI;
|
||||
using xIdentityService.DI;
|
||||
using xMessageService.DI;
|
||||
using xPushService.DI;
|
||||
@@ -199,6 +200,12 @@ namespace xServices.DI
|
||||
app.UseXTagService(
|
||||
isDevelopmentEnvironment: isDevelopmentEnvironment
|
||||
);
|
||||
|
||||
//
|
||||
// Using File Service ...
|
||||
app.UseXFileService(
|
||||
isDevelopmentEnvironment: isDevelopmentEnvironment
|
||||
);
|
||||
}
|
||||
|
||||
//
|
||||
@@ -305,6 +312,13 @@ namespace xServices.DI
|
||||
lifeTime: lifeTime,
|
||||
repositoryType: xDataService.Constants.XRepositoryType.EF
|
||||
);
|
||||
|
||||
//
|
||||
// Register File Service ...
|
||||
services.AddXFileService<XApiDbContext>(
|
||||
lifeTime: lifeTime,
|
||||
repositoryType: xDataService.Constants.XRepositoryType.EF
|
||||
);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user