using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Seyounth.Hyosung.Core.Agv; using Seyounth.Hyosung.Core.Plc; using Seyounth.Hyosung.Core.Printer; using Seyounth.Hyosung.Core.Scanner; namespace Seyounth.Hyosung.Core; public static class ServiceExtensions { public static IServiceCollection AddHyosungServices(this IServiceCollection services,ConfigurationManager configuration) { services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); return services; } }