コード例 #1
0
 public IOneSkyResponse SignIn(string email, string password)
 {
     return
         (OneSkyHelper.CreateAnonymousRequest(SignInAddress)
          .Body(SignInEmailBody, email)
          .Body(SignInPasswordBody, password)
          .Post());
 }
コード例 #2
0
ファイル: Plugin.cs プロジェクト: QuadRatNewBy/OneSky.CSharp
 internal Plugin(OneSkyHelper oneSky)
 {
     this.Locale         = new PluginLocale(oneSky);
     this.Specialization = new PluginSpecialization(oneSky);
     this.Project        = new PluginProject(oneSky);
     this.Item           = new PluginItem(oneSky);
     this.Quotation      = new PluginQuotation(oneSky);
     this.Order          = new PluginOrder(oneSky);
     this.Account        = new PluginAccount(oneSky, OneSkyClient.Anonymous);
     this.LanguagePair   = new PluginLanguagePair(oneSky);
 }
コード例 #3
0
 internal PlatformScreenshot(OneSkyHelper oneSky)
 {
     this.oneSky = oneSky;
 }
コード例 #4
0
 public IOneSkyResponse SignUp(string email)
 {
     return(OneSkyHelper.CreateAnonymousRequest(SignUpAddress).Body(SignUpEmailBody, email).Post());
 }
コード例 #5
0
 internal PlatformQuotation(OneSkyHelper oneSky)
 {
     this.oneSky = oneSky;
 }
コード例 #6
0
 internal PlatformOrder(OneSkyHelper oneSky)
 {
     this.oneSky = oneSky;
 }
コード例 #7
0
 internal PluginAccount(OneSkyHelper oneSky, IPluginAnonymous anonymous)
 {
     this.anonymous = anonymous;
     this.oneSky    = oneSky;
 }