Changeset 63d885e for FarmatikoData/Models/MedicineList.cs
- Timestamp:
- 08/07/20 11:01:25 (5 years ago)
- Branches:
- master
- Children:
- 5d02859
- Parents:
- ee137aa (diff), c406ae5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/MedicineList.cs
ree137aa r63d885e 8 8 public class MedicineList : BaseEntity 9 9 { 10 public MedicineList() 11 { 12 } 10 13 public Medicine Medicine { get; set; } 11 14 public bool HasMedicine { get; set; } 15 public MedicineList(Medicine Medicine, bool HasMedicine) 16 { 17 this.Medicine = Medicine; 18 this.HasMedicine = HasMedicine; 19 } 12 20 /*public ICollection<MedicineList> MedicinesList { get; set; } 13 21 public MedicineList()
Note:
See TracChangeset
for help on using the changeset viewer.