Ejemplo n.º 1
0
 public IList <TEntity> GetListByName(string tagCode)
 {
     try
     {
         var devInfoList = dbSet.GetListByTagCode(tagCode).ToTModel();
         return(devInfoList.ToWCFList());
     }
     catch (System.Exception ex)
     {
         Log.Error(tag, "GetListByName", "Exception:" + ex);
         return(null);
     }
 }
Ejemplo n.º 2
0
        public IList <TEntity> GetListByName(string tagCode)
        {
            var devInfoList = dbSet.GetListByTagCode(tagCode).ToTModel();

            return(devInfoList.ToWCFList());
        }