From 6c354a2c3d319a0e19a690e6198c50eb6a37923b Mon Sep 17 00:00:00 2001 From: Christian Arenas Date: Wed, 14 Jun 2017 15:24:56 +0200 Subject: [PATCH] Add LocationId to Locations Model --- src/Services/Location/Locations.API/Model/Locations.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Services/Location/Locations.API/Model/Locations.cs b/src/Services/Location/Locations.API/Model/Locations.cs index 0944008a7..c8af41adb 100644 --- a/src/Services/Location/Locations.API/Model/Locations.cs +++ b/src/Services/Location/Locations.API/Model/Locations.cs @@ -9,6 +9,8 @@ { [BsonRepresentation(BsonType.ObjectId)] public string Id { get; set; } + + public int LocationId { get; set; } public string Code { get; set; } [BsonRepresentation(BsonType.ObjectId)] public string Parent_Id { get; set; }