source: FarmatikoData/Models/Medicine.cs@ 63d885e

Last change on this file since 63d885e 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
Line 
1using FarmatikoData.Base;
2
3namespace FarmatikoData.Models
4{
5 public class Medicine : BaseEntity
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; }
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 }
25
26 }
27}
Note: See TracBrowser for help on using the repository browser.