public static string ReadJson(this IViewDb viewDb, ViewType viewType, bool strict = true) { return(viewDb.ReadJson(viewType, Id.Unassigned, strict)); }
public static string ReadJson <TView>(this IViewDb viewDb, Id id, bool strict = true) where TView : View { return(viewDb.ReadJson(typeof(TView), id, strict)); }
public static string ReadJson <TView>(this IViewDb viewDb, bool strict = true) where TView : View { return(viewDb.ReadJson <TView>(Id.Unassigned, strict)); }
// // JSON // public static string ReadJson(this IViewDb viewDb, Type viewType, Id id, bool strict = true) { return(viewDb.ReadJson(viewType, id, strict)); }