18 lines
482 B
C#
18 lines
482 B
C#
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<int> ResgisterCustomer(string CNumber, string ResId, string CustomerFrom, string customerDetailXml = null);
|
|
|
|
Task SetQuantity(int ch, int eid, int salegroupid);
|
|
|
|
Task<int> ContractUser(string resid, string userName);
|
|
}
|
|
} |