Esempio n. 1
0
        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)
			};
		}
Esempio n. 3
0
        public string Delete(string input)
        {
            TestAutoActionService service = new TestAutoActionService();

            return(service.Sha1(input));
        }
Esempio n. 4
0
        public string Post(string input)
        {
            TestAutoActionService service = new TestAutoActionService();

            return(service.Md5(input));
        }
Esempio n. 5
0
        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);
		}