14 lines
473 B
C#
14 lines
473 B
C#
namespace HiVakil.Infrastructure.RestServices;
|
|
|
|
public interface IRestApiWrapper : IScopedDependency
|
|
{
|
|
IKaveNegarRestApi KaveNegarRestApi { get; }
|
|
IZarinpalRestApi ZarinpalRestApi { get; }
|
|
}
|
|
|
|
public class RestApiWrapper : IRestApiWrapper
|
|
{
|
|
public IKaveNegarRestApi KaveNegarRestApi => RestService.For<IKaveNegarRestApi>(RestAddress.BaseKaveNegar);
|
|
public IZarinpalRestApi ZarinpalRestApi => RestService.For<IZarinpalRestApi>(RestAddress.BaseZarinpal);
|
|
|
|
} |