Initial git push

This commit is contained in:
2019-12-17 20:44:55 +01:00
parent ab59feeebb
commit 766869a6d6
19 changed files with 818 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace H_PLUS_Sports.Models
{
public partial class OrderItem
{
public int OrderItemId { get; set; }
public int OrderId { get; set; }
public string ProductId { get; set; }
public int? Quantity { get; set; }
public virtual Order Order { get; set; }
public virtual Product Product { get; set; }
}
}