Fleshed out entity classes and created command to create student

This commit is contained in:
2019-04-24 23:57:55 +00:00
parent a30e9a5b1c
commit acba25cc0b
13 changed files with 129 additions and 27 deletions

View File

@@ -1,4 +1,5 @@
using System;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
@@ -14,7 +15,9 @@ namespace BrightGlimmer.Domain
public string StateCode { get; set; }
public string County { get; set; }
public string ZipCode { get; set; }
[JsonIgnore]
public decimal Latitude { get; set; }
[JsonIgnore]
public decimal Longitude { get; set; }
}
}