Files
Yi.Admin/Yi.Framework.Net6/src/framework/Yi.Framework.Ddd/YiFrameworkDddModule.cs

29 lines
704 B
C#
Raw Normal View History

2023-01-11 11:10:59 +08:00
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using StartupModules;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Core.Attributes;
using Yi.Framework.Core.AutoMapper;
2023-01-11 11:10:59 +08:00
namespace Yi.Framework.Ddd
{
[DependsOn(
typeof(YiFrameworkCoreAutoMapperModule)
)]
2023-01-11 15:05:31 +08:00
public class YiFrameworkDddModule:IStartupModule
2023-01-11 11:10:59 +08:00
{
public void Configure(IApplicationBuilder app, ConfigureMiddlewareContext context)
{
}
public void ConfigureServices(IServiceCollection services, ConfigureServicesContext context)
{
2023-01-11 18:16:58 +08:00
2023-01-11 11:10:59 +08:00
}
}
}