14 lines
353 B
C#
14 lines
353 B
C#
using PARR.DAL.Models;
|
|
|
|
namespace PARR.EsppOrderManager.Services
|
|
{
|
|
internal interface IEsppOrderService
|
|
{
|
|
/// <summary>
|
|
/// Изменение статуса в ЕСПП
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<bool> ChangeOrderToEsppAsync(Order order, string resultMsg, TimeSpan duration);
|
|
}
|
|
}
|