You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class MessagesService : ESPBaseService, ESP.Contracts.Data.IMessage
{
[SwaggerWcfTag("Messages")]
[SwaggerWcfPath("GetText", "Get messageText with current language")]
string IMessage.GetText(string classCode, long code)
{
throw new NotImplementedException();
}
[SwaggerWcfTag("Messages")]
[SwaggerWcfPath("GetText", "Get messageText with the current language in laguageIso")]
string IMessage.GetText(string classCode, long code, string languageIso)
{
throw new NotImplementedException();
}
}
`
The result:
The swagger.json have only one GetText section:
The text was updated successfully, but these errors were encountered:
The Servicecontract
`
[ServiceContract]
public interface IMessage
{
}
`
The service Implementation
`
}
`
The result:
The swagger.json have only one GetText section:
The text was updated successfully, but these errors were encountered: