source: FarmatikoData/Models/Medicine.cs@ c406ae5

Last change on this file since c406ae5 was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Update Models, Repos, Services and Controllers

  • Property mode set to 100644
File size: 881 bytes
RevLine 
[e42f61a]1using FarmatikoData.Base;
[30a465f]2
3namespace FarmatikoData.Models
4{
[a8ccc2c]5 public class Medicine : BaseEntity
[30a465f]6 {
7 public Medicine() { }
8 public string Name { get; set; }
9 public string Strength { get; set; }
10 public string Form { get; set; }
11 public string WayOfIssuing { get; set; }
12 public string Manufacturer { get; set; }
13 public float Price { get; set; }
14 public string Packaging { get; set; }
[c406ae5]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 }
[30a465f]25
26 }
27}
Note: See TracBrowser for help on using the repository browser.