示例#1
0
        public static ChartCounterDTO Convert_Table_To_DTO(tblChart_Counter tbl_chart_counter)
        {
            ChartCounterDTO chart_counter_dto = new ChartCounterDTO();

            chart_counter_dto.Dashboard_Widget_Id = tbl_chart_counter.DashboardWidget_Id;
            chart_counter_dto.Id         = tbl_chart_counter.Id;
            chart_counter_dto.Is_Deleted = tbl_chart_counter.Is_Deleted;
            chart_counter_dto.Metric.Id  = tbl_chart_counter.Metric_Id;

            chart_counter_dto.Chart_Common_Property_DTO.From_Date = tbl_chart_counter.From_Date;
            if (tbl_chart_counter.Time_Line != null)
            {
                chart_counter_dto.Chart_Common_Property_DTO.Time_Line = (TimeLine)Enums.TryParse(typeof(TimeLine), tbl_chart_counter.Time_Line);
            }
            chart_counter_dto.Chart_Common_Property_DTO.To_Date   = tbl_chart_counter.To_Date;
            chart_counter_dto.Chart_Common_Property_DTO.Precision = tbl_chart_counter.Precision;
            return(chart_counter_dto);
        }
示例#2
0
        public static tblChart_Counter Convert_DTO_To_Table(ChartCounterDTO chart_counter_dto)
        {
            tblChart_Counter tbl_chart_counter = new tblChart_Counter();

            tbl_chart_counter.DashboardWidget_Id = chart_counter_dto.Dashboard_Widget_Id;
            tbl_chart_counter.Id         = chart_counter_dto.Id;
            tbl_chart_counter.Is_Deleted = chart_counter_dto.Is_Deleted;
            tbl_chart_counter.Metric_Id  = chart_counter_dto.Metric.Id;
            tbl_chart_counter.From_Date  = chart_counter_dto.Chart_Common_Property_DTO.From_Date;

            if (chart_counter_dto.Chart_Common_Property_DTO.Time_Line != null)
            {
                tbl_chart_counter.Time_Line = chart_counter_dto.Chart_Common_Property_DTO.Time_Line.ToString();
            }
            tbl_chart_counter.To_Date   = chart_counter_dto.Chart_Common_Property_DTO.To_Date;
            tbl_chart_counter.Precision = chart_counter_dto.Chart_Common_Property_DTO.Precision;
            return(tbl_chart_counter);
        }