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> GetCustomerMobliesByResid(string? resid); Task GetCustomerDetailsByResid(string? resid); Task> GetRelationCustomersByResid(string? resid); } }