ServiceConfiguration.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Microsoft.Extensions.DependencyInjection;
  2. using CZFW.Framework.Interface;
  3. using CZFW.Framework.Logic;
  4. using CZKJ.GBRS2.Interface;
  5. using CZKJ.GBRS2.Logic;
  6. namespace CZKJ.GBRS2
  7. {
  8. public static class ServiceConfiguration
  9. {
  10. public static IServiceCollection ConfigServies(this IServiceCollection service)
  11. {
  12. service.AddTransient<INavigation, NavigationLogic>();
  13. service.AddTransient<IUserInfo, UserInfoLogic>();
  14. service.AddTransient<IUserRoleNavMapping, UserRoleNavMappingLogic>();
  15. service.AddTransient<IPosition, PositionLogic>();
  16. service.AddTransient<IPublicInfo, PublicInfoLogic>();
  17. service.AddTransient<IDict, DictLogic>();
  18. service.AddTransient<IDictItem, DictItemLogic>();
  19. service.AddTransient<IGallery, GalleryLogic>();
  20. service.AddTransient<ISeoShare, SeoShareLogic>();
  21. service.AddTransient<ISysConfig, SysConfigLogic>();
  22. service.AddTransient<IType, TypeLogic>();
  23. service.AddTransient<IArticle, ArticleLogic>();
  24. service.AddTransient<IProduct, ProductLogic>();
  25. service.AddTransient<IMapping, MappingLogic>();
  26. service.AddTransient<IFiles, FilesLogic>();
  27. service.AddTransient<ILink, LinkLogic>();
  28. service.AddTransient<IPublicType, PublicTypeLogic>();
  29. service.AddTransient<ICustomerQuery, CustomerQueryLogic>();
  30. service.AddTransient<IVideo, VideoLogic>();
  31. service.AddTransient<IUserInfoCustomer, UserInfoCustomerLogic>();
  32. service.AddTransient<IPriceAnnouncement, PriceAnnouncementLogic>();
  33. return service;
  34. }
  35. }
  36. }