You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
394 B
C#
14 lines
394 B
C#
using Khd.Core.Application.Interface;
|
|
using Khd.Core.Domain.Models;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Khd.Core.Application
|
|
{
|
|
public static class ApplicationExtensions
|
|
{
|
|
public static void AddApplication(this IServiceCollection services)
|
|
{
|
|
services.AddTransient<IMesProdPlanApplication, MesProdPlanApplication>();
|
|
}
|
|
}
|
|
} |