using System.Text; using Autofac; using HybirdFrameworkCore.Autofac; using Microsoft.AspNetCore.Mvc; using Service.Charger.Client; using Service.System; namespace WebStarter.Controllers.Test; [ApiController] [Route("[controller]")] public class WeatherForecastController : ControllerBase { private static readonly string[] Summaries = { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" }; private readonly ILogger _logger; private readonly SysUserServices _sysUserServices; public WeatherForecastController(ILogger logger, SysUserServices sysUserServices) { _logger = logger; _sysUserServices = sysUserServices; } [HttpGet(Name = "GetWeatherForecast")] public IEnumerable Get() { _logger.LogInformation("this is a hello world"); ChargerClient client = AppInfo.Container.Resolve(); client.InitBootstrap("127.0.0.1", 9998); client.BaseConnect(); client.SessionAttr("1", "3"); client.Channel.WriteAndFlushAsync(Encoding.ASCII.GetBytes("ddddddddddd")); _logger.LogInformation("this is two hello world"); return Enumerable.Range(1, 5).Select(index => new WeatherForecast { Date = DateTime.Now.AddDays(index), Summary = Summaries[Random.Shared.Next(Summaries.Length)] }) .ToArray(); } }