public static LogElementDTO LoadElement(LRAPLogType logType, LogElementInfo logElementInfo) { return(GetLoggingPersister(logType).LoadLogElement(logElementInfo)); }
public LogElementDTO LoadLogElement(LogElementInfo logElementInfo) { throw new NotImplementedException(); }
public LogElementDTO LoadLogElement(LogElementInfo logElementInfo) { var json = File.ReadAllText(logElementInfo.FilePath); return(SerializationHelper.Deserialize <LogElementDTO>(json, SerializationType.Json)); }