using System.Collections.Generic; using SEIeSCM.Models.Dto.SysLogin; using SEIeSCM.Models.Dto; using IBatisNet.DataMapper; namespace SEIeSCM.Models.Repository.SysLogin { public interface SysLoginRepository_I { string ValidateUser(string strCompanyCd, string strUserId, string strPwd); void SetHisLogin(string strUserId, string strUserIp, string strUserAgent, string strUserCulture); SysDto Select(string SqlMap, SysDto SLD); IList SelectList(string SqlMap, SysDto SLD); int SelectInt(string SqlMap, SysDto SLD); string SelectString(string SqlMap, SysDto SLD); void Insert(string SqlMap, SysDto SLD); void Update(string SqlMap, SysDto SLD); void Delete(string SqlMap, SysDto SLD); void Begin(); void Commit(); void RollBack(); //패스워드 저장 string BatchPawdChange(SysDto SLD); } }