Changeset c406ae5 for FarmatikoData/Models/Medicine.cs
- Timestamp:
- 08/05/20 18:39:58 (4 years ago)
- Branches:
- master
- Children:
- 63d885e
- Parents:
- a6bbad1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Medicine.cs
ra6bbad1 rc406ae5 13 13 public float Price { get; set; } 14 14 public string Packaging { get; set; } 15 public Medicine(string Name, string Strength, string Form, string WayOfIssuing, string Manufacturer, float Price, string Packaging) 16 { 17 this.Name = Name; 18 this.Strength = Strength; 19 this.Form = Form; 20 this.WayOfIssuing = WayOfIssuing; 21 this.Manufacturer = Manufacturer; 22 this.Price = Price; 23 this.Packaging = Packaging; 24 } 15 25 16 26 }
Note:
See TracChangeset
for help on using the changeset viewer.