Last change
on this file since 28d7d35 was 1454207, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Change structure, Add repo, services & controllers
|
-
Property mode
set to
100644
|
File size:
1014 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.ComponentModel.DataAnnotations;
|
---|
5 | using System.Text;
|
---|
6 | using FarmatikoData.Base;
|
---|
7 | using Microsoft.EntityFrameworkCore;
|
---|
8 |
|
---|
9 | namespace FarmatikoData.Models
|
---|
10 | {
|
---|
11 | public class HealthFacility : BaseEntity
|
---|
12 | {
|
---|
13 | public HealthFacility() { }
|
---|
14 | [Required]
|
---|
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; }
|
---|
24 | public HealthFacility(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 | }
|
---|
33 | }
|
---|
34 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.