Refer to the image above, we can see the AbpAsyncDeterminiationInterceptor
must have a generic type which is the same as what is provided into its constructor. Supposed it should be interpreted automatically instead of explicitly specifies something like new AbpAsyncDeterminiationInterceptor<BlueprintInterceptor>(new BlueprintInterceptor());
The weird point is that, sometimes when I call a function, I won't need to specify the generic type and the function could reveal the return type from the parameter type.
Thanks in advance.