You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
477 B
19 lines
477 B
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace CellularManagement.Domain;
|
|
|
|
/// <summary>
|
|
/// 领域层依赖注入扩展
|
|
/// </summary>
|
|
public static class DependencyInjection
|
|
{
|
|
/// <summary>
|
|
/// 添加领域层服务
|
|
/// </summary>
|
|
/// <param name="services">服务集合</param>
|
|
/// <returns>服务集合</returns>
|
|
public static IServiceCollection AddDomainServices(this IServiceCollection services)
|
|
{
|
|
return services;
|
|
}
|
|
}
|