1234567891011121314151617181920212223 |
- namespace BeautySaloon
- {
- using System;
- using System.Collections.Generic;
-
- public partial class DocumentByService
- {
- public int ID { get; set; }
- public int ClientServiceID { get; set; }
- public string DocumentPath { get; set; }
-
- public virtual ClientService ClientService { get; set; }
- }
- }
|