/// <summary> /// Converts this instance of <see cref="Preguntas"/> to an instance of <see cref="PREGUNTAS"/>. /// </summary> /// <param name="dto"><see cref="Preguntas"/> to convert.</param> public static PREGUNTAS ToTable(this Preguntas dto) { if (dto == null) { return(null); } var entity = new PREGUNTAS(); entity.Id = dto.Id; entity.Descripcion = dto.Descripcion; dto.OnEntity(entity); return(entity); }