Last change
on this file since c406ae5 was c406ae5, checked in by DimitarSlezenkovski <dslezenkovski@…>, 5 years ago |
Update Models, Repos, Services and Controllers
|
-
Property mode
set to
100644
|
File size:
682 bytes
|
Rev | Line | |
---|
[30a465f] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
[a8ccc2c] | 4 | using FarmatikoData.Base;
|
---|
[30a465f] | 5 | using Microsoft.EntityFrameworkCore;
|
---|
| 6 |
|
---|
| 7 | namespace FarmatikoData.Models
|
---|
| 8 | {
|
---|
[a8ccc2c] | 9 | public class Pharmacy : BaseEntity
|
---|
[30a465f] | 10 | {
|
---|
| 11 | public Pharmacy() { }
|
---|
| 12 | public string Name { get; set; }
|
---|
| 13 | public string Location { get; set; }
|
---|
| 14 | public string Address { get; set; }
|
---|
| 15 | public bool WorkAllTime { get; set; }
|
---|
[c406ae5] | 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 | }
|
---|
[30a465f] | 23 | }
|
---|
| 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.