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