public int addSymbolicLocation(RadiomapBackend.SymbolicLocation input, RadiomapBackend.Vertex v)
 {
     /*
     radiomapEntities radiomapContext = LocationService.radiomapContext;
     radiomapContext
     //String expandOptions = "Edges,Building_Floors,Vertices,Vertices/AbsoluteLocations,Vertices/SymbolicLocations";
     String expandOptions = "Building_Floors,Vertices,Vertices/AbsoluteLocations,Vertices/SymbolicLocations,Edges,Edges/Vertices,Edges/Vertices/AbsoluteLocations";
     var query = from b in radiomapContext.Buildings.Expand(expandOptions)
                 where b.ID == 16 //TODO: Hardcoded building id
                 select b;
     */            
     return 1;
 }
 public int addVertex(RadiomapBackend.Vertex input, RadiomapBackend.Building b)
 {
     throw new NotImplementedException();
 }
 public int addEdge(RadiomapBackend.Edge input, RadiomapBackend.Building b)
 {
     throw new NotImplementedException();
 }
 public void addMeasurement(RadiomapBackend.Building building, RadiomapBackend.Vertex v, string deviceMac, DateTime start, DateTime end)
 {
     throw new NotImplementedException();
 }
 public int addBuilding_Floor(RadiomapBackend.Building_Floors bf, RadiomapBackend.Building b)
 {
     throw new NotImplementedException();
 }
 public void addBuilding_Macs(System.Collections.Generic.List<string> newMacs, RadiomapBackend.Building b)
 {
     throw new NotImplementedException();
 }
 public void updateVertex(RadiomapBackend.Vertex input)
 {
     throw new NotImplementedException();
 }
 public void updateSymbolicLocation(RadiomapBackend.SymbolicLocation input)
 {
     throw new NotImplementedException();
 }
 public void updateEdge(RadiomapBackend.Edge input)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 10
0
 public void updateBuilding_Floor(RadiomapBackend.Building_Floors input)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 11
0
 public void updateBuilding(RadiomapBackend.Building b)
 {
     throw new NotImplementedException();
 }