source: FarmatikoData/Models/Pharmacy.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: 682 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 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.