|
|
|
@ -18,6 +18,10 @@ namespace Service.Charger.Handler;
|
|
|
|
|
public class BatteryStatusReportedReqHandler : SimpleChannelInboundHandler<BatteryStatusReportedReq>, IBaseHandler
|
|
|
|
|
{
|
|
|
|
|
private readonly BinInfoRepository _binInfoRepository;
|
|
|
|
|
public BatteryStatusReportedReqHandler(BinInfoRepository binInfoRepository)
|
|
|
|
|
{
|
|
|
|
|
_binInfoRepository = binInfoRepository;
|
|
|
|
|
}
|
|
|
|
|
private static readonly ILog Log =LogManager.GetLogger(typeof(BatteryStatusReportedReqHandler));
|
|
|
|
|
|
|
|
|
|
public BinInfoRepository BinInfoRepository { get; set; }
|
|
|
|
|