source: FarmatikoData/Models/Medicine.cs@ 37c8d1d

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

Add migration, BaseEntity class and FarmatikoServices

  • Property mode set to 100644
File size: 563 bytes
RevLine 
[30a465f]1using System;
2using System.Collections.Generic;
3using System.Text;
[a8ccc2c]4using FarmatikoData.Base;
[30a465f]5using Microsoft.EntityFrameworkCore;
6
7namespace FarmatikoData.Models
8{
[a8ccc2c]9 public class Medicine : BaseEntity
[30a465f]10 {
11 public Medicine() { }
12 public string Name { get; set; }
13 public string Strength { get; set; }
14 public string Form { get; set; }
15 public string WayOfIssuing { get; set; }
16 public string Manufacturer { get; set; }
17 public float Price { get; set; }
18 public string Packaging { get; set; }
19
20 }
21}
Note: See TracBrowser for help on using the repository browser.