예제 #1
0
 public int GetMixCount(string billNo, string productCode)
 {
     using (PersistentManager pm = new PersistentManager())
     {
         ProductStateDao psDao = new ProductStateDao();
         return psDao.FindMixCount(billNo, productCode);
     }
 }