16 lines
351 B
C#
16 lines
351 B
C#
using Hg.Core.Domain.Dto.Order;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Impl
|
|
{
|
|
public interface IOrderDomain : IScopedDependency
|
|
{
|
|
Task<List<IsdealOutDto>> GetIsdeal(List<string> residList, List<string> eidList);
|
|
|
|
|
|
}
|
|
} |