Esempio n. 1
0
        public static Businessratio getByTypeId(int typeid, string cablestatus)
        {
            //string strCableStatus = GlobalBusiness.getCableStatus(cablestatus);
            Businessratio brs = BusinessratioDao.FindFirst(new EqExpression("Businesstypeid", typeid), new EqExpression("Dataname", cablestatus), new EqExpression("Isdeleted", (int)EnmIsdeleted.使用中));

            return(brs);
        }
Esempio n. 2
0
 public static Businessratio[] getByTypeId(int typeid)
 {
     Businessratio[] brs = BusinessratioDao.FindAll(new EqExpression("Businesstypeid", typeid), new EqExpression("Isdeleted", (int)EnmIsdeleted.使用中));
     return(brs);
 }