using System.Runtime.CompilerServices; namespace OI.Metrology.Shared.Models.Stateless; public interface IMethodName { static string? GetActualAsyncMethodName([CallerMemberName] string? name = null) => name; }