private static CustomResultInterceptor CreateSuccessInterceptor() { var interceptorResult = InterceptorResult.Success(); var interceptor = new CustomResultInterceptor(interceptorResult); return(interceptor); }
private static CustomResultInterceptor CreateFailInterceptor() { var interceptorResult = InterceptorResult.Fail(Message); var interceptor = new CustomResultInterceptor(interceptorResult); return(interceptor); }