public static DTO.UserRole ToDto(this Display.UserRole displayEntity) { var dto = new DTO.UserRole( displayEntity.Id, displayEntity.Name, displayEntity.Description); return(dto); }
public static Display.UserRole ToDisplayEntity(this DTO.UserRole dto) { var displayEntity = new Display.UserRole(); displayEntity.Id = dto.Id; displayEntity.Name = dto.Name; displayEntity.Description = dto.Description; return(displayEntity); }