Beispiel #1
0
 public HubClientApp(HubAppClient hubClient, HubClientAppContext appContext, AppModel model)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
     ID    = new EntityID(model.ID);
     Title = model.Title;
 }
 public HubClientUser(HubAppClient hubClient, HubClientAppContext appContext, AppUserModel model)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
     ID       = new EntityID(model.ID);
     userName = new AppUserName(model.UserName);
 }
Beispiel #3
0
 public HubClientModifierCategory(HubAppClient hubClient, HubClientAppContext appContext, ModifierCategoryModel model)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
     ID   = new EntityID(model.ID);
     name = new ModifierCategoryName(model.Name);
 }
Beispiel #4
0
 public HubClientVersion(HubAppClient hubClient, HubClientAppContext appContext, AppVersionModel model)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
     ID         = new EntityID(model.ID);
     versionKey = AppVersionKey.Parse(model.VersionKey);
 }
Beispiel #5
0
 public HubClientModifier(HubAppClient hubClient, HubClientAppContext appContext, ModifierModel model)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
     ID     = new EntityID(model.ID);
     modKey = new ModifierKey(model.ModKey);
 }
 public HubClientResourceGroup(HubAppClient hubClient, HubClientAppContext appContext, AppVersionKey versionKey, ResourceGroupModel model)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
     this.versionKey = versionKey;
     ID   = new EntityID(model.ID);
     name = new ResourceGroupName(model.Name);
 }
Beispiel #7
0
 public PermanentLogClient(HubAppClient client)
 {
     this.client = client;
 }
Beispiel #8
0
 public HubClientAppContext(HubAppClient hubClient, AppKey appKey, AppVersionKey versionKey)
 {
     this.hubClient  = hubClient;
     this.appKey     = appKey;
     this.versionKey = versionKey;
 }
Beispiel #9
0
 public HubClientUserContext(HubAppClient hubClient, HubClientAppContext appContext)
 {
     this.hubClient  = hubClient;
     this.appContext = appContext;
 }