Changeset 1db5673 for FarmatikoData/Models/Medicine.cs
- Timestamp:
- 11/14/20 12:27:30 (4 years ago)
- Branches:
- master
- Children:
- 68454c6
- Parents:
- ad60966
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Medicine.cs
rad60966 r1db5673 1 1 using FarmatikoData.Base; 2 using System.Collections; 3 using System.Collections.Generic; 2 4 using System.ComponentModel.DataAnnotations; 5 using System.Diagnostics.CodeAnalysis; 6 using System.Text.Json.Serialization; 3 7 4 8 namespace FarmatikoData.Models … … 18 22 public float Price { get; set; } 19 23 public string Packaging { get; set; } 24 //[JsonPropertyName("PHMedicineList")] 25 public ICollection<PharmacyHeadMedicine> MedicineList { get; set; } 20 26 public Medicine(string Name, string Strength, string Form, string WayOfIssuing, string Manufacturer, float Price, string Packaging) 21 27 { … … 28 34 this.Packaging = Packaging; 29 35 } 30 31 36 } 32 37 }
Note:
See TracChangeset
for help on using the changeset viewer.