7 lines
234 B
C#
7 lines
234 B
C#
namespace Application.Domain;
|
|
|
|
public interface ITradeService
|
|
{
|
|
Task<bool> AddTrade(string userId, string code,string name, string propId, int count, long price,string content);
|
|
Task<int> GetUserTradeCount(string userId);
|
|
} |