source: FarmatikoData/Models/HealthcareWorker.cs

Last change on this file 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
RevLine 
[30a465f]1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Text;
[a8ccc2c]5using FarmatikoData.Base;
[30a465f]6using Microsoft.EntityFrameworkCore;
7
8namespace FarmatikoData.Models
9{
[1454207]10 public class HealthcareWorker : BaseEntity
[30a465f]11 {
[1454207]12 public HealthcareWorker() { }
[30a465f]13 [Required]
14 public string Name { get; set; }
15 [Required]
16 public string Branch { get; set; }
17 [Required]
[1454207]18 public HealthFacility Facility { get; set; }
[30a465f]19 public string Title { get; set; }
[1454207]20 public HealthcareWorker(string Name, string Branch, HealthFacility Facility, string Title)
[c406ae5]21 {
22 this.Name = Name;
23 this.Branch = Branch;
24 this.Facility = Facility;
25 this.Title = Title;
26 }
[30a465f]27 }
28}
Note: See TracBrowser for help on using the repository browser.