Update 20211218
This commit is contained in:
15
WebAPI/Helper/Dal/IAccountDAL.cs
Normal file
15
WebAPI/Helper/Dal/IAccountDAL.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
using BWPMModels;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace APP.Dal
|
||||
{
|
||||
public interface IAccountDAL
|
||||
{
|
||||
Task<UserModel> GetById(int id);
|
||||
Task<UserModel> GetByEmail(string email);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user