Ejemplo n.º 1
0
        public override List <T> RetrieveAll <T>()
        {
            var      lstResult = SqlDao.ExecuteQueryProcedure(_mapper.GetRetrieveByallStatement());
            var      dic       = new List <Dictionary <string, object> >();
            List <T> list      = new List <T>();

            if (lstResult.Count > 0)
            {
                for (int i = 0; i < lstResult.Count; i++)
                {
                    dic.Add(lstResult[i]);
                }

                var objs = _mapper.BuildObjects(dic);

                for (int i = 0; i < lstResult.Count; i++)
                {
                    list.Add((T)Convert.ChangeType(objs[i], typeof(T)));
                }

                return(list);
            }

            return(default(List <T>));
        }