public bool UpdateDefectiveType(DefectiveTypeVO item)
        {
            DefectiveTypeDAC dac = new DefectiveTypeDAC();

            return(dac.UpdateDefectiveType(item));
        }
        public bool DeleteDefectiveType(string id)
        {
            DefectiveTypeDAC dac = new DefectiveTypeDAC();

            return(dac.DeleteDefectiveType(id));
        }
        public List <DefectiveTypeVO> GetAllDefectiveTypes()
        {
            DefectiveTypeDAC dac = new DefectiveTypeDAC();

            return(dac.GetAllDefectiveTypes());
        }