OneConversorTemplate/UpperFirstLetter/Services/Contracts/ITextConversionApiService.cs
2025-06-08 12:44:02 -03:00

11 lines
336 B
C#

namespace SentenceConverterModule.Services.Contracts
{
public interface ITextConversionApiService
{
Task<string> ConvertToSentenceCaseAsync(string text);
Task<string> ConvertToUpperCaseAsync(string text);
Task<string> ConvertToLowerCaseAsync(string text);
Task<bool> IsHealthyAsync();
}
}