17 lines
362 B
C#
17 lines
362 B
C#
using DG.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Zxd.Domain.Dto;
|
|
|
|
namespace Zxd.Domain.Impl
|
|
{
|
|
public interface IRegUserDomain : IScopedDependency
|
|
{
|
|
Task RegUser(SynInnerModel dto);
|
|
|
|
void SetQuantity(int ch, int eid, int gid, string resid);
|
|
}
|
|
} |