18 lines
360 B
C#
18 lines
360 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace blagodat.Models;
|
|||
|
|
|||
|
public partial class OrderService
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int CodeClient { get; set; }
|
|||
|
|
|||
|
public int ServiceId { get; set; }
|
|||
|
|
|||
|
public virtual Order CodeClientNavigation { get; set; } = null!;
|
|||
|
|
|||
|
public virtual Service Service { get; set; } = null!;
|
|||
|
}
|