using DG.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Domain.Impl { public interface IResCustomerDomain : IScopedDependency { Task ResgisterCustomer(string CNumber, string ResId, string CustomerFrom, string customerDetailXml = null); Task SetQuantity(int ch, int eid, int salegroupid); Task ContractUser(string resid, string userName); } }