Esempio n. 1
0
 public List <BomVO> GetBomAll()
 {
     return(B_dac.GetBomAll());
 }
Esempio n. 2
0
        /// <summary>
        /// 모든 Bom 조회
        /// </summary>
        /// <returns></returns>
        public List <BomVO> GetBomAll(int bom_id = 0, int product_id = 0)
        {
            BomDac dac = new BomDac();

            return(dac.GetBomAll(bom_id, product_id));
        }