using GpsCardGatewayPosition.Model.Config; using GpsCardGatewayPosition.Model.IoT; using GpsCardGatewayPosition.Service.MqProducer.Model; using GpsCardGatewayPosition.Service.Resolver.Interface; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Resolver.Factory { public class PropertyResolverFactory : IResolverFactory { private readonly ILogger _logger; private readonly AppsettingsConfig _configAppsettings; public PropertyResolverFactory(ILogger logger, IOptions optConfigAppsettings) { _logger = logger; _configAppsettings = optConfigAppsettings.Value; } public PackageMsgModel ParseAndWrap(JObject msg) { throw new NotImplementedException(); } public void Resolver(MessageModel msg) { throw new NotImplementedException(); } } }