public void CreateOrder(OrderForInsert order)
 {
     using (var con = new SqlConnection(_connectionString))
     {
         con.Insert(order);
     }
 }
 public void CreateOrder(OrderForInsert order)
 {
     throw new NotImplementedException();
 }