source: FarmatikoData/Models/HealthcareWorker.cs@ dae4cde

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

Change structure, Add repo, services & controllers

  • Property mode set to 100644
File size: 800 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Text;
5using FarmatikoData.Base;
6using Microsoft.EntityFrameworkCore;
7
8namespace FarmatikoData.Models
9{
10 public class HealthcareWorker : BaseEntity
11 {
12 public HealthcareWorker() { }
13 [Required]
14 public string Name { get; set; }
15 [Required]
16 public string Branch { get; set; }
17 [Required]
18 public HealthFacility Facility { get; set; }
19 public string Title { get; set; }
20 public HealthcareWorker(string Name, string Branch, HealthFacility Facility, string Title)
21 {
22 this.Name = Name;
23 this.Branch = Branch;
24 this.Facility = Facility;
25 this.Title = Title;
26 }
27 }
28}
Note: See TracBrowser for help on using the repository browser.