auto.bus_api/Server/Services/IPaymentsService.cs
2023-05-17 18:25:47 +03:00

12 lines
424 B
C#

using LiqPayIntegration;
using Microsoft.AspNetCore.Mvc;
using SharedModels.DataTransferObjects;
using System.Dynamic;
namespace Server.Services;
public interface IPaymentsService
{
Task<(bool isSucceed, IActionResult? actionResult, IEnumerable<PaymentResponse> payments)> GetPayments(DateTime from, DateTime to);
Task<(bool isSucceed, IActionResult? actionResult, string url)> GetPaymentUrl(PaymentDto payment);
}