using Newtonsoft.Json;
using StructureHelperCommon.Infrastructures.Interfaces;
namespace DataAccess.JsonConverters
{
///
/// Helper logic for JSON converter
///
///
public interface IReadJsonLogic : ILogic
{
///
///
///
///
///
///
///
///
///
T ReadJson(JsonReader reader, Type objectType, T existingValue, bool hasExistingValue, JsonSerializer serializer);
}
}