コード例 #1
0
        public bool UpdateDefectiveType(DefectiveTypeVO item)
        {
            DefectiveTypeDAC dac = new DefectiveTypeDAC();

            return(dac.UpdateDefectiveType(item));
        }
コード例 #2
0
        public bool DeleteDefectiveType(string id)
        {
            DefectiveTypeDAC dac = new DefectiveTypeDAC();

            return(dac.DeleteDefectiveType(id));
        }
コード例 #3
0
        public List <DefectiveTypeVO> GetAllDefectiveTypes()
        {
            DefectiveTypeDAC dac = new DefectiveTypeDAC();

            return(dac.GetAllDefectiveTypes());
        }