|
using System.Threading.Tasks;
|
|
using Knoks.Core.Entities;
|
|
using System.Collections.Generic;
|
|
using Knoks.Core.Entities.Args;
|
|
|
|
namespace Knoks.Core.Logic.Interfaces
|
|
{
|
|
public interface IKnokPricelManager
|
|
{
|
|
Task<decimal> TotalPrice(CreateKnokArgs knok, long userId);
|
|
}
|
|
} |