This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [MyDB] | |
GO | |
CREATE PROCEDURE [dbo].[usp_GetOrderProducts] | |
AS | |
BEGIN | |
--Declare Local Variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } |
OlderNewer