コード例 #1
0
        //problem
        public static problemsExist ConvertProblemExist(CproblemsExist p)
        {
            problemsExist pe = new problemsExist();

            pe.Id                     = p.Id;
            pe.problemStatus          = p.problemStatus;
            pe.date                   = p.date;
            pe.maintenanceDescription = p.maintenanceDescription;
            pe.problemId              = p.problemId;
            pe.dayCareCenterId        = p.dayCareCenterId;
            pe.pictureAfter           = p.pictureAfter;
            pe.pictureBefore          = p.pictureBefore;
            return(pe);
        }
コード例 #2
0
        public static CproblemsExist convertToCommonProblemExist(problemsExist p)
        {
            CproblemsExist problemExist = new CproblemsExist(p.Id, p.problemStatus, p.date, p.dayCareCenterId, p.maintenanceDescription, p.problemId, p.pictureBefore, p.pictureAfter);

            return(problemExist);
        }