示例#1
0
        public LivePoint_DTO GetLivePoint(long Id)
        {
            tblElement    tblelement    = get_tblElement_by_Id(Id);
            LivePoint_DTO livepoint_dto = LivePoint_Conversion.Convert_Tbl_Element_To_LivePoint_DTO(tblelement);

            ReadLivePoint(tblelement, livepoint_dto);
            GetLastAudit(livepoint_dto.Point_Id.ToString(), nameof(tblElement), livepoint_dto);
            return(livepoint_dto);
        }