12345678910111213141516171819202122232425262728293031323334353637 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace BB_Grishina
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Service
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Service()
- {
- this.ClientService = new HashSet<ClientService>();
- this.ServicePhoto = new HashSet<ServicePhoto>();
- }
-
- public int ID { get; set; }
- public string НаименованиеУслугми { get; set; }
- public string Изображение { get; set; }
- public string Длительность { get; set; }
- public string Стоимость { get; set; }
- public string ДействующаяСкидка { get; set; }
- public string MainImagePath { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<ClientService> ClientService { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<ServicePhoto> ServicePhoto { get; set; }
- }
- }
|