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
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using FarmatikoData.Base;
5using Microsoft.EntityFrameworkCore;
6
7namespace FarmatikoData.Models
8{
9 public class Pharmacy : BaseEntity
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; }
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 }
23 }
24}
Note: See TracBrowser for help on using the repository browser.