source: PostgreSqlDotnetCore/Models/VetCenter.cs@ e9bb9d1

main
Last change on this file since e9bb9d1 was e9bb9d1, checked in by ElenaMoskova <elena.moskova99@…>, 4 weeks ago

Use of views

  1. Use of views in VetCenters.
  2. Ability to provide a response to a given response.
  • Property mode set to 100644
File size: 967 bytes
RevLine 
[2aea0fd]1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.ComponentModel.DataAnnotations.Schema;
5using System.IO;
6using System.Linq;
7using System.Text;
8
9namespace PostgreSqlDotnetCore.Models
10{
[e9bb9d1]11 [Table("vet_centers_with_city", Schema = "project")]
[2aea0fd]12 public class VetCenter
13 {
[e9bb9d1]14 // [Key]
[2aea0fd]15 public int id { get; set; }
16
17 [Required(ErrorMessage = "The name is required")]
18 public string name { get; set; }
19 [Required(ErrorMessage = "The adress is required")]
20 public string adress { get; set; }
21 public string description { get; set; }
22 public string workinghours { get; set; }
23 public float latitude { get; set; }
24 public float longitude { get; set; }
25 public string phonenumber { get; set; }
[2639fab]26 // [ForeignKey("CitiesClass")]
[2aea0fd]27 public int citiesid { get; set; }
[2639fab]28 // public CitiesClass CitiesClass { get; set; }
[2aea0fd]29
30
31 }
32}
Note: See TracBrowser for help on using the repository browser.