Exemplo n.º 1
0
    public List <string[]> PropertyLocation(string unit)
    {
        PropertyDataBase pDB      = new PropertyDataBase();
        List <string[]>  Location = pDB.getPropertyLocation(unit);

        return(Location);
    }
Exemplo n.º 2
0
    public List<string[]> PropertyLocation(string unit)
    {
        PropertyDataBase pDB = new PropertyDataBase();
        List<string[]> Location = pDB.getPropertyLocation(unit);

        return Location;
    }
Exemplo n.º 3
0
 public List<string[]> getPropertyLocationData(string unit)
 {
     PropertyDataBase pDB = new PropertyDataBase();
     return pDB.getPropertyLocation(unit);
 }