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); } }
public IList <TEntity> GetListByName(string tagCode) { var devInfoList = dbSet.GetListByTagCode(tagCode).ToTModel(); return(devInfoList.ToWCFList()); }