2025-02-11 10:23:14 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Demka_Snova_1.Hardik.Conect.Dao;
|
|
|
|
|
|
|
|
public class ordersDao
|
|
|
|
{
|
2025-03-05 09:12:58 +00:00
|
|
|
public int ID { get; set; }
|
|
|
|
public string CodeZakaz { get; set; }
|
|
|
|
public DateOnly Date { get; set; }
|
|
|
|
public TimeOnly Time { get; set; }
|
|
|
|
public string CodeClient { get; set; }
|
|
|
|
public string Usluga { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public DateOnly? DateClose { get; set; }
|
|
|
|
public decimal Prokat { get; set; }
|
|
|
|
public KlientDao klient { get; set; }
|
2025-02-11 10:23:14 +00:00
|
|
|
}
|