using System.Collections.Generic; using SEIeSCM.Models.Dto.Home; namespace SEIeSCM { public class UserInfo { public UserInfo() { } public UserInfo(string strUserId) { this.UserId = strUserId; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName, string strUserChk) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; this.UserChk = strUserChk; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName, string strUserChk, string strUserEis) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; this.UserChk = strUserChk; this.UserEis = strUserEis; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName, string strUserChk, string strUserEis, string strUserPwd) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; this.UserChk = strUserChk; this.UserEis = strUserEis; this.UserPwd = strUserPwd; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName, string strUserChk, string strUserEis, string strUserPwd, string strSvCode, string strSvName) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; this.UserChk = strUserChk; this.UserEis = strUserEis; this.UserPwd = strUserPwd; this.SvCode = strSvCode; this.SvName = strSvName; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName, string strUserChk, string strUserEis, string strUserPwd, string strSvCode, string strSvName, string strStoreCode) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; this.UserChk = strUserChk; this.UserEis = strUserEis; this.UserPwd = strUserPwd; this.SvCode = strSvCode; this.SvName = strSvName; this.StoreCode = strStoreCode; } public UserInfo(string strUserGb, string strCompanyCd, string strUserId, string strUserName, string strDeptCode, string strDeptName, string strUserChk, string strUserEis, string strUserPwd, string strSvCode, string strSvName, string strStoreCode, string strStoreType) { this.UserGb = strUserGb; this.CompanyCd = strCompanyCd; this.UserId = strUserId; this.UserName = strUserName; this.DeptCode = strDeptCode; this.DeptName = strDeptName; this.UserChk = strUserChk; this.UserEis = strUserEis; this.UserPwd = strUserPwd; this.SvCode = strSvCode; this.SvName = strSvName; this.StoreCode = strStoreCode; this.StoreType = strStoreType; } public string UserGb { get; set; } public string CompanyCd { get; set; } public string UserId { get; set; } public string UserName { get; set; } public string DeptCode { get; set; } public string DeptName { get; set; } public string UserChk { get; set; } public string UserEis { get; set; } public string UserPwd { get; set; } public string SvCode { get; set; } public string SvName { get; set; } public string StoreCode { get; set; } public string StoreType { get; set; } public IList UserMenuList { set; get; } } }