From 893fdf33d30bcd8cd263fd218aba26c0ff0cb02a Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 18 Sep 2020 15:06:25 +0200 Subject: [PATCH] - create structure of gBase, to understand it --- GBaseStructure.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 GBaseStructure.md diff --git a/GBaseStructure.md b/GBaseStructure.md new file mode 100644 index 0000000..14e8c1b --- /dev/null +++ b/GBaseStructure.md @@ -0,0 +1,41 @@ +# GBase Structure + +```md +- GBase + | + +-GBaseTable + | + | + +-GBaseTable + | + +-GBaseColumn--GBaseColumn--GBaseColumn + +-GBaseEntry + +-GBaseEntry +``` + +## Terminology + +| GBase Terminology | C# equivalent | +|-------------------|---------------| +| GBaseTable | Type | +| GBaseColumn | Property | +| GBaseEntry | Instance | + +## File Structure + +```c# +public class Model +{ + private readonly IGBase _gBase; + + public +} +``` + +## Process + +### StartUp + +### GetValue + +### SetValue