添加登录注册业务

This commit is contained in:
橙子
2022-04-07 22:48:10 +08:00
parent 4472e4aa6f
commit 0fba47207f
31 changed files with 24606 additions and 85 deletions

View File

@@ -1,9 +1,13 @@
using Yi.Framework.Model.Models;
using System;
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
public partial interface IUserService
{
{
public Task<bool> Login(string userName, string password, Action<UserEntity> userAction = null);
public Task<bool> Register(UserEntity userEntity, Action<UserEntity> userAction = null);
}
}