You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
415 B
C#
14 lines
415 B
C#
using Estsh.Core.Models;
|
|
using Estsh.Core.Services;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.IServices
|
|
{
|
|
public interface IAccountService : IBaseService<SysEmp>
|
|
{
|
|
public Hashtable login(SysEmp user);
|
|
public Hashtable EditUserPassword(string userId, string oldPasWord, string newPasWord, string updateEmpId);
|
|
public List<SysFactory> getSelectFactory(int factoryID);
|
|
}
|
|
}
|