public override AopInterceptorOption AopInterceptorOption() { var option = new AopInterceptorOption(); option.AddAopIntercetor <IncInterceptor>(); return(option); }
public override AopInterceptorOption AopInterceptorOption() { var aopInterceptorOption = new AopInterceptorOption(); aopInterceptorOption.AddAopIntercetor <NoImplInterceptor>(); return(aopInterceptorOption); }
public virtual AopInterceptorOption AopInterceptorOption() { var option = new AopInterceptorOption(); option.AddAopIntercetor <HangfireProxyInterceptor>(); return(option); }
public virtual AopInterceptorOption AopInterceptorOption() { var option = new AopInterceptorOption(); option .AddAopIntercetor <CacheInterceptor>() .AddAopIntercetor <InvalidateCacheInterceptor>(); return(option); }
public override AopInterceptorOption AopInterceptorOption() { var option = new AopInterceptorOption(); option .AddAopIntercetor <RequireDbContextInterceptor>() .AddAopIntercetor <RepositoryInterceptor>(); return(option); }