Пример #1
0
        /// <summary>
        /// Converts this instance of <see cref="medico"/> to an instance of <see cref="medicoDto"/>.
        /// </summary>
        /// <param name="entity"><see cref="medico"/> to convert.</param>
        public static medicoDto ToDTO(this medico entity)
        {
            if (entity == null)
            {
                return(null);
            }

            var dto = new medicoDto();

            dto.v_MedicoId            = entity.v_MedicoId;
            dto.i_MasterServiceId     = entity.i_MasterServiceId;
            dto.i_SystemUserId        = entity.i_SystemUserId;
            dto.i_MasterServiceTypeId = entity.i_MasterServiceTypeId;
            dto.r_Clinica             = entity.r_Clinica;
            dto.r_Medico                 = entity.r_Medico;
            dto.i_CategoryId             = entity.i_CategoryId;
            dto.r_Price                  = entity.r_Price;
            dto.v_EmployerOrganizationId = entity.v_EmployerOrganizationId;
            dto.v_CustomerOrganizationId = entity.v_CustomerOrganizationId;
            dto.v_WorkingOrganizationId  = entity.v_WorkingOrganizationId;
            dto.i_IsDeleted              = entity.i_IsDeleted;
            dto.i_InsertUserId           = entity.i_InsertUserId;
            dto.d_InsertDate             = entity.d_InsertDate;
            dto.i_UpdateUserId           = entity.i_UpdateUserId;
            dto.d_UpdateDate             = entity.d_UpdateDate;
            dto.v_ComentaryUpdate        = entity.v_ComentaryUpdate;

            entity.OnDTO(dto);

            return(dto);
        }
Пример #2
0
        /// <summary>
        /// Converts this instance of <see cref="medicoDto"/> to an instance of <see cref="medico"/>.
        /// </summary>
        /// <param name="dto"><see cref="medicoDto"/> to convert.</param>
        public static medico ToEntity(this medicoDto dto)
        {
            if (dto == null)
            {
                return(null);
            }

            var entity = new medico();

            entity.v_MedicoId            = dto.v_MedicoId;
            entity.i_MasterServiceId     = dto.i_MasterServiceId;
            entity.i_SystemUserId        = dto.i_SystemUserId;
            entity.i_MasterServiceTypeId = dto.i_MasterServiceTypeId;
            entity.r_Clinica             = dto.r_Clinica;
            entity.r_Medico                 = dto.r_Medico;
            entity.i_CategoryId             = dto.i_CategoryId;
            entity.r_Price                  = dto.r_Price;
            entity.v_EmployerOrganizationId = dto.v_EmployerOrganizationId;
            entity.v_CustomerOrganizationId = dto.v_CustomerOrganizationId;
            entity.v_WorkingOrganizationId  = dto.v_WorkingOrganizationId;
            entity.i_IsDeleted              = dto.i_IsDeleted;
            entity.i_InsertUserId           = dto.i_InsertUserId;
            entity.d_InsertDate             = dto.d_InsertDate;
            entity.i_UpdateUserId           = dto.i_UpdateUserId;
            entity.d_UpdateDate             = dto.d_UpdateDate;
            entity.v_ComentaryUpdate        = dto.v_ComentaryUpdate;

            dto.OnEntity(entity);

            return(entity);
        }
Пример #3
0
 /// <summary>
 /// Invoked when <see cref="ToEntity"/> operation is about to return.
 /// </summary>
 /// <param name="entity"><see cref="medico"/> converted from <see cref="medicoDto"/>.</param>
 static partial void OnEntity(this medicoDto dto, medico entity);
Пример #4
0
 /// <summary>
 /// Invoked when <see cref="ToDTO"/> operation is about to return.
 /// </summary>
 /// <param name="dto"><see cref="medicoDto"/> converted from <see cref="medico"/>.</param>
 static partial void OnDTO(this medico entity, medicoDto dto);