| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.ComponentModel.DataAnnotations; |
| | | 4 | | using System.Text; |
| | | 5 | | |
| | | 6 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 7 | | { |
| | | 8 | | public class Pricing : ExternalRecord |
| | | 9 | | { |
| | 0 | 10 | | public long SupplierDepartmentId { get; set; } |
| | | 11 | | |
| | | 12 | | /// <summary> |
| | | 13 | | /// Подразделение поставщика |
| | | 14 | | /// </summary> |
| | | 15 | | [Required] |
| | 0 | 16 | | public Department SupplierDepartment { get; set; } |
| | | 17 | | |
| | 0 | 18 | | public long GoodId { get; set; } |
| | | 19 | | |
| | | 20 | | /// <summary> |
| | | 21 | | /// Товар |
| | | 22 | | /// </summary> |
| | | 23 | | [Required] |
| | 0 | 24 | | public Good Good { get; set; } |
| | | 25 | | } |
| | | 26 | | } |