| | |
| | | public ReturnDto<System.Dynamic.ExpandoObject> GetUserLoginInfo([FromBody] UserLogin model) |
| | | { |
| | | Guid userGuid = model.userGuid; |
| | | Guid orgGuid= model.orgGuid; |
| | | DataSet dset = new DataSet(); |
| | | dynamic m = new System.Dynamic.ExpandoObject(); |
| | | using (SqlConnection conn = new SqlConnection(DbHelperSQL.strConn)) |
| | |
| | | cmd.CommandType = CommandType.StoredProcedure; |
| | | SqlParameter[] parameters = new SqlParameter[] { |
| | | new SqlParameter("@userGuid",userGuid), |
| | | new SqlParameter("@orgGuid",orgGuid), |
| | | }; |
| | | foreach (SqlParameter parameter in parameters) |
| | | { |