using System.Threading.Tasks; using Volo.Abp.Application.Services; namespace Volo.Abp.TestApp.Application; /// /// A service documented only on the interface to test XML doc fallback. /// /// /// Used to verify that documentation is resolved from the interface when the implementation has none. /// public interface IInterfaceOnlyDocumentedAppService : IApplicationService { /// /// Gets a message documented only on the interface. /// /// The message key. /// The resolved message. Task GetMessageAsync(string key); }