source: FarmatikoData/Models/PharmacyHead.cs@ 1454207

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

Change structure, Add repo, services & controllers

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