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.

16 lines
448 B

4 years ago
  1. using Common.Model;
  2. using Common.Model.Account;
  3. using Repository.DAO.Application;
  4. using System.Data;
  5. using System.Web;
  6. namespace Repository.DAO.Account
  7. {
  8. public interface IAccountRepo : IApplicationDAO
  9. {
  10. DataSet SystemLogin(LoginModel loginModel);
  11. DbResponse LogError(HttpException lastError, string page, string userName);
  12. DbResponse ChangePassword(PasswordChangeModel changePassword);
  13. }
  14. }