source: FarmatikoData/Models/PharmacyHead.cs@ 5d02859

Last change on this file since 5d02859 was 5d02859, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add new repo, service and controller

  • Property mode set to 100644
File size: 640 bytes
RevLine 
[30a465f]1using System;
2using System.Collections.Generic;
[5d02859]3using System.ComponentModel.DataAnnotations;
[30a465f]4using System.Text;
[a8ccc2c]5using FarmatikoData.Base;
[30a465f]6using Microsoft.EntityFrameworkCore;
7
8namespace FarmatikoData.Models
9{
[a8ccc2c]10 public class PharmacyHead : BaseEntity
[30a465f]11 {
[5d02859]12 public PharmacyHead()
13 {
14 }
15 [Required]
[30a465f]16 public string Email { get; set; }
[5d02859]17 [Required]
[30a465f]18 public string Name { get; set; }
[5d02859]19 [Required]
[30a465f]20 public string Password { get; set; }
21 public ICollection<MedicineList> MedicineLists { get; set; }
22 public ICollection<Pharmacy> PharmaciesList { get; set; }
[5d02859]23
[30a465f]24 }
25}
Note: See TracBrowser for help on using the repository browser.