Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Dish
- {
- // pk
- public int DishID { get; set; }
- //fk
- public int RestaurantID { get; set; }
- public int CategoryID { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
- public decimal Price { get; set; }
- // Navigation
- public virtual Category Category { get; set; }
- public virtual Restaurant Restaurant { get; set; }
- public virtual ICollection<DishImage> DishImages { get; set; }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement