public object Test2(string input) { TestAutoActionService service = new TestAutoActionService(); return(new { md5 = service.Md5(input), sha1 = service.Sha1(input) }); }
public object Test2(string input) { TestAutoActionService service = new TestAutoActionService(); return new { md5 = service.Md5(input), sha1 = service.Sha1(input) }; }
public string Delete(string input) { TestAutoActionService service = new TestAutoActionService(); return(service.Sha1(input)); }
public string Post(string input) { TestAutoActionService service = new TestAutoActionService(); return(service.Md5(input)); }
public string Get(string input) { TestAutoActionService service = new TestAutoActionService(); return(service.Base64(input)); }
public string Delete(string input) { TestAutoActionService service = new TestAutoActionService(); return service.Sha1(input); }
public string Post(string input) { TestAutoActionService service = new TestAutoActionService(); return service.Md5(input); }
public string Get(string input) { TestAutoActionService service = new TestAutoActionService(); return service.Base64(input); }