public object Patch(EchoMethod request)
		{
			return new EchoMethodResponse { Result = HttpMethods.Patch };
		}
		public object Delete(EchoMethod request)
		{
			return new EchoMethodResponse { Result = HttpMethods.Delete };
		}
		public object Post(EchoMethod request)
		{
			return new EchoMethodResponse { Result = HttpMethods.Post };
		}
 public object Patch(EchoMethod request)
 {
     return(new EchoMethodResponse {
         Result = HttpMethods.Patch
     });
 }
 public object Delete(EchoMethod request)
 {
     return(new EchoMethodResponse {
         Result = HttpMethods.Delete
     });
 }
 public object Post(EchoMethod request)
 {
     return(new EchoMethodResponse {
         Result = HttpMethods.Post
     });
 }