ComplianceServer/code/Hg.Internal.Domain/Impl/ICustomerDomain.cs

16 lines
459 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Internal.Domain.Impl
{
public interface ICustomerDomain : IScopedDependency
{
Task<List<CustomerMoblieDto>> GetCustomerMobliesByResid(string? resid);
Task<ComplaintCustomerInfoDto> GetCustomerDetailsByResid(string? resid);
Task<List<string>> GetRelationCustomersByResid(string? resid);
}
}