using System; using System.Collections.Generic; using SEIeSCM.Models.Dto; using SEIeSCM.Models.Dto.SysLogin; using SEIeSCM.Models.Dto.Home; namespace SEIeSCM.Service { public interface IUserService { SysDto GetUser(string strCompanyCd, string strUserId); IList GetMenuList(string strCompanyCd, string strUserId, string strUserGb); } }