using Common.Dtos.Common; namespace Api.Services.Interfaces { public interface IServiceHelper { Task Validate(T request); Task RemoveCache(); void AddKeyToCache(string key); } }