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.

12 lines
287 B

4 years ago
  1. using Common.Model;
  2. using Common.Model.Account;
  3. using System.Data;
  4. namespace Business.Account
  5. {
  6. public interface IAccountServices
  7. {
  8. DbResponse ChangePassword(PasswordChangeModel changePassword);
  9. DataSet LoginSystem(LoginModel loginModel);
  10. }
  11. }