Exemplo n.º 1
0
        public DefectInfo Get_Defect_By_Id(int Defect_Id)
        {
            DefectInfo defects = new DefectInfo();

            DefectRepo dRepo = new DefectRepo();

            defects = dRepo.Get_Defects_By_Id(Defect_Id);

            return(defects);
        }