using System; using System.Collections.Generic; using System.Text; using FarmatikoData.Base; using Microsoft.EntityFrameworkCore; namespace FarmatikoData.Models { public class Pharmacy : BaseEntity { public Pharmacy() { } public string Name { get; set; } public string Location { get; set; } public string Address { get; set; } public bool WorkAllTime { get; set; } public Pharmacy(string Name, string Location, string Address, bool WorkAllTime) { this.Name = Name; this.Location = Location; this.Address = Address; this.WorkAllTime = WorkAllTime; } } }