public HttpApiClientRequestBuilderFactory(HttpClient httpClient, IUriHelper uriHelper, IBrowserCookieService browserCookieService, IJsInterop jsInterop, IMessageService messageService)
 {
     _uriHelper  = uriHelper;
     _httpClient = httpClient;
     this.browserCookieService = browserCookieService;
     this.jsInterop            = jsInterop;
     this.messageService       = messageService;
 }
Esempio n. 2
0
 public ConstructionSite(string id, IJsInterop js) : base(id, js)
 {
 }
Esempio n. 3
0
		public ACreepBase(string id, IJsInterop js) : base(id, js)
		{
			store = new Store($"Game.creeps.{name}.store", js);
			memory = new Memory($"Memory.creeps.{name}", js);
		}
Esempio n. 4
0
 public Memory(string path, IJsInterop js)
 {
     _path = path;
     _js   = js;
 }
 public BrowserCookieService(IJsInterop jsInterop)
 {
     _jsInterop = jsInterop;
 }