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); } }