mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
661 B
20 lines
661 B
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace Volo.Abp.TestApp.Application;
|
|
|
|
/// <summary>
|
|
/// A service documented only on the interface to test XML doc fallback.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Used to verify that documentation is resolved from the interface when the implementation has none.
|
|
/// </remarks>
|
|
public interface IInterfaceOnlyDocumentedAppService : IApplicationService
|
|
{
|
|
/// <summary>
|
|
/// Gets a message documented only on the interface.
|
|
/// </summary>
|
|
/// <param name="key">The message key.</param>
|
|
/// <returns>The resolved message.</returns>
|
|
Task<string> GetMessageAsync(string key);
|
|
}
|
|
|