コード例 #1
0
 internal void Initialize(EntityStore store, Type objectType)
 {
     this.Store      = store;
     this.objectType = objectType;
     LoadConnector();
 }
コード例 #2
0
ファイル: API.cs プロジェクト: ghost-devs/LunarServer
 public EntityAPI(HTTPServer server, EntityStore store, string rootPath = null, DataFormat format = DataFormat.JSON)  : base(server, rootPath)
 {
     this.format   = format;
     this.Store    = store;
     this.mimeType = "application/" + format.ToString().ToLower();
 }
コード例 #3
0
ファイル: Entity.cs プロジェクト: hedger/LunarServer
 internal void SetStore(EntityStore store)
 {
     this.Store = store;
 }