Last change
on this file since 30a465f was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
716 bytes
|
Rev | Line | |
---|
[30a465f] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using Microsoft.EntityFrameworkCore;
|
---|
| 5 |
|
---|
| 6 | namespace FarmatikoData.Models
|
---|
| 7 | {
|
---|
| 8 | public class PharmacyHead
|
---|
| 9 | {
|
---|
| 10 | public MedicineList PharmacyMedicines { get; set; }
|
---|
| 11 | public Pharmacy Pharmacy { get; set; }
|
---|
| 12 | public string Email { get; set; }
|
---|
| 13 | public string Name { get; set; }
|
---|
| 14 | public string Password { get; set; }
|
---|
| 15 | public ICollection<MedicineList> MedicineLists { get; set; }
|
---|
| 16 | public ICollection<Pharmacy> PharmaciesList { get; set; }
|
---|
| 17 | public PharmacyHead()
|
---|
| 18 | {
|
---|
| 19 | PharmaciesList = new HashSet<Pharmacy>();
|
---|
| 20 | MedicineLists = new HashSet<MedicineList>();
|
---|
| 21 | }
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.