15 lines
516 B
C#
15 lines
516 B
C#
using NetinaShop.Infrastructure.Models;
|
|
|
|
namespace NetinaShop.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);
|
|
} |