source: FarmatikoData/Models/HealthFacilities.cs@ c406ae5

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

Update Models, Repos, Services and Controllers

  • Property mode set to 100644
File size: 1020 bytes
RevLine 
[30a465f]1using System;
[a55ef91]2using System.Collections;
[30a465f]3using System.Collections.Generic;
4using System.ComponentModel.DataAnnotations;
5using System.Text;
[a8ccc2c]6using FarmatikoData.Base;
[30a465f]7using Microsoft.EntityFrameworkCore;
8
9namespace FarmatikoData.Models
10{
[a8ccc2c]11 public class HealthFacilities : BaseEntity
[30a465f]12 {
13 public HealthFacilities() { }
[37c8d1d]14 [Required]
[30a465f]15 public string Name { get; set; }
16 [Required]
17 public string Municipality { get; set; }
18 [Required]
19 public string Address { get; set; }
20 [Required]
21 public string Type { get; set; }
22 public string Email { get; set; }
23 public string Phone { get; set; }
[c406ae5]24 public HealthFacilities(string Name, string Municipality, string Address, string Type, string Email, string Phone)
25 {
26 this.Name = Name;
27 this.Municipality = Municipality;
28 this.Address = Address;
29 this.Type = Type;
30 this.Email = Email;
31 this.Phone = Phone;
32 }
[30a465f]33 }
34}
Note: See TracBrowser for help on using the repository browser.