Api-PWA/DocuMed.Infrastructure/RestServices/RestApiWrapper.cs

11 lines
318 B
C#
Raw Normal View History

2023-10-19 21:28:09 +03:30
namespace DocuMed.Infrastructure.RestServices;
public interface IRestApiWrapper : IScopedDependency
{
IKaveNegarRestApi KaveNegarRestApi { get; }
}
public class RestApiWrapper : IRestApiWrapper
{
public IKaveNegarRestApi KaveNegarRestApi => RestService.For<IKaveNegarRestApi>(RestAddress.BaseKaveNegar);
}