Update 20231016
This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
using BWPMModels;
|
||||
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