示例#1
0
        // logging helper
        public static string FormatTaskTypeDTO(TaskTypeDTO taskTypeDTO)
        {
            if (taskTypeDTO == null)
            {
                // null
                return("taskTypeDTO: null");
            }
            else
            {
                // output values
                return("taskTypeDTO: \n"
                       + "{ \n"

                       + "    TaskTypeId: " + "'" + taskTypeDTO.TaskTypeId + "'" + ", \n"
                       + "    Name: " + (taskTypeDTO.Name != null ? "'" + taskTypeDTO.Name + "'" : "null") + ", \n"
                       + "    Description: " + (taskTypeDTO.Description != null ? "'" + taskTypeDTO.Description + "'" : "null") + ", \n"
                       + "    Active: " + "'" + taskTypeDTO.Active + "'" + ", \n"
                       + "    IsDeleted: " + "'" + taskTypeDTO.IsDeleted + "'" + ", \n"
                       + "    CreateBy: " + (taskTypeDTO.CreateBy != null ? "'" + taskTypeDTO.CreateBy + "'" : "null") + ", \n"
                       + "    CreateOn: " + (taskTypeDTO.CreateOn != null ? "'" + taskTypeDTO.CreateOn + "'" : "null") + ", \n"
                       + "    UpdateBy: " + (taskTypeDTO.UpdateBy != null ? "'" + taskTypeDTO.UpdateBy + "'" : "null") + ", \n"
                       + "    UpdateOn: " + (taskTypeDTO.UpdateOn != null ? "'" + taskTypeDTO.UpdateOn + "'" : "null") + " \n"
                       + "} \n");
            }
        }
示例#2
0
        public static R_TaskType ConvertDTOtoEntity(TaskTypeDTO dto)
        {
            R_TaskType taskType = new R_TaskType();

            taskType.TaskTypeId  = dto.TaskTypeId;
            taskType.Name        = dto.Name;
            taskType.Description = dto.Description;
            taskType.Active      = dto.Active;
            taskType.IsDeleted   = dto.IsDeleted;
            taskType.CreateBy    = dto.CreateBy;
            taskType.CreateOn    = dto.CreateOn;
            taskType.UpdateBy    = dto.UpdateBy;
            taskType.UpdateOn    = dto.UpdateOn;

            return(taskType);
        }