11 lines
318 B
C#
11 lines
318 B
C#
namespace DocuMed.Infrastructure.RestServices;
|
|
|
|
public interface IRestApiWrapper : IScopedDependency
|
|
{
|
|
IKaveNegarRestApi KaveNegarRestApi { get; }
|
|
}
|
|
|
|
public class RestApiWrapper : IRestApiWrapper
|
|
{
|
|
public IKaveNegarRestApi KaveNegarRestApi => RestService.For<IKaveNegarRestApi>(RestAddress.BaseKaveNegar);
|
|
} |