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 Post(string input) { TestAutoActionService service = new TestAutoActionService(); return(service.Md5(input)); }
public string Post(string input) { TestAutoActionService service = new TestAutoActionService(); return service.Md5(input); }