18 lines
391 B
C#
18 lines
391 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Hard_Demo.Models;
|
|
|
|
public partial class Service
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string ServiceName { get; set; } = null!;
|
|
|
|
public string ServiceCode { get; set; } = null!;
|
|
|
|
public string ServiceCost { get; set; } = null!;
|
|
|
|
public virtual ICollection<Order> Idorders { get; set; } = new List<Order>();
|
|
}
|