Using Both (Extend & Override)
How to Use Both?
1. Create a New Service Interface to Implement New Method
public interface IExtendedRENInMemoryCacheService : IRENCacheService
{
void AdditionalMethod();
}2. Create a New Service to Implement New Method
3. Register Your Custom Implementation
4. Use Custom Service In Action
Last updated