source: FarmatikoData/Models/HealthFacilities.cs@ 37c8d1d

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

Add FarmatikoRepository and FarmatikoServices

  • Property mode set to 100644
File size: 645 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 HealthFacilities : BaseEntity
11 {
12 public HealthFacilities() { }
13 [Required]
14 public string Name { get; set; }
15 [Required]
16 public string Municipality { get; set; }
17 [Required]
18 public string Address { get; set; }
19 [Required]
20 public string Type { get; set; }
21 public string Email { get; set; }
22 public string Phone { get; set; }
23 }
24}
Note: See TracBrowser for help on using the repository browser.