16 lines
413 B
C#
16 lines
413 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace Demka_Snova_1.Hardik.Conect.Dao;
|
||
|
|
||
|
public class ordersDao
|
||
|
{
|
||
|
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 string DateClose {get;set;}
|
||
|
public decimal Prokat {get;set;}
|
||
|
}
|