Skip to content

Instantly share code, notes, and snippets.

View lest-xu's full-sized avatar
🌴
On vacation

lest-xu

🌴
On vacation
  • United States
View GitHub Profile
USE [MyDB]
GO
CREATE PROCEDURE [dbo].[usp_GetOrderProducts]
AS
BEGIN
--Declare Local Variables
namespace Angular6Mvc5.Models
{
public class OrderProducts
{
public int OrderId { get; set; }
public int ProductId { get; set; }
public double UnitPrice { get; set; }
public double Quantity { get; set; }
public Product Product { get; set; }