You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
532 B

using Common.Model;
using Common.Model.Account;
using Repository.DAO.Application;
using System.Data;
using System.Web;
namespace Repository.DAO.Account
{
public interface IAccountRepo : IApplicationDAO
{
DataSet SystemLogin(LoginModel loginModel);
DbResponse LogError(HttpException lastError, string page, string userName);
DbResponse ChangePassword(PasswordChangeModel changePassword);
DbResponse AuthenticateAgent(string userId, string otp, string uniqueKey);
}
}