Changeset 63d885e for FarmatikoData/Models
- Timestamp:
- 08/07/20 11:01:25 (4 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. - Location:
- FarmatikoData/Models
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/HealthFacilities.cs
ree137aa r63d885e 22 22 public string Email { get; set; } 23 23 public string Phone { get; set; } 24 public HealthFacilities(string Name, string Municipality, string Address, string Type, string Email, string Phone) 25 { 26 this.Name = Name; 27 this.Municipality = Municipality; 28 this.Address = Address; 29 this.Type = Type; 30 this.Email = Email; 31 this.Phone = Phone; 32 } 24 33 } 25 34 } -
FarmatikoData/Models/HealthcareWorkers.cs
ree137aa r63d885e 18 18 public HealthFacilities Facility { get; set; } 19 19 public string Title { get; set; } 20 public HealthcareWorkers(string Name, string Branch, HealthFacilities Facility, string Title) 21 { 22 this.Name = Name; 23 this.Branch = Branch; 24 this.Facility = Facility; 25 this.Title = Title; 26 } 20 27 } 21 28 } -
FarmatikoData/Models/Medicine.cs
ree137aa r63d885e 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 } -
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() -
FarmatikoData/Models/Pharmacy.cs
ree137aa r63d885e 14 14 public string Address { get; set; } 15 15 public bool WorkAllTime { get; set; } 16 public Pharmacy(string Name, string Location, string Address, bool WorkAllTime) 17 { 18 this.Name = Name; 19 this.Location = Location; 20 this.Address = Address; 21 this.WorkAllTime = WorkAllTime; 22 } 16 23 } 17 24 }
Note:
See TracChangeset
for help on using the changeset viewer.