public static Order CreateOrder(this OrderDTO dto) { var order = new Order(); dto.CopyToOrder(order); return(order); }