40 lines
1.8 KiB
C#
40 lines
1.8 KiB
C#
|
using ConfectioneryBusinessLogic.BusinessLogics;
|
|||
|
using ConfectioneryBusinessLogic.MailWorker;
|
|||
|
using ConfectioneryBusinessLogic.OfficePackage.Implements;
|
|||
|
using ConfectioneryBusinessLogic.OfficePackage;
|
|||
|
using ConfectioneryContracts.BusinessLogicsContracts;
|
|||
|
using ConfectioneryContracts.DI;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ConfectioneryBusinessLogic
|
|||
|
{
|
|||
|
public class ImplementationBusinessLogicExtension : IImplementationBusinessLogicExtension
|
|||
|
{
|
|||
|
public int Priority => 0;
|
|||
|
|
|||
|
public void RegisterServices()
|
|||
|
{
|
|||
|
DependencyManager.Instance.RegisterType<IComponentLogic, ComponentLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IOrderLogic, OrderLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IPastryLogic, PastryLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IReportLogic, ReportLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IClientLogic, ClientLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IImplementerLogic, ImplementerLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IMessageInfoLogic, MessageInfoLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IWorkProcess, WorkModeling>();
|
|||
|
DependencyManager.Instance.RegisterType<IBackUpLogic, BackUpLogic>();
|
|||
|
DependencyManager.Instance.RegisterType<IShopLogic, ShopLogic>();
|
|||
|
|
|||
|
DependencyManager.Instance.RegisterType<AbstractMailWorker, MailKitWorker>(true);
|
|||
|
|
|||
|
DependencyManager.Instance.RegisterType<AbstractSaveToExcel, SaveToExcel>();
|
|||
|
DependencyManager.Instance.RegisterType<AbstractSaveToWord, SaveToWord>();
|
|||
|
DependencyManager.Instance.RegisterType<AbstractSaveToPdf, SaveToPdf>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|