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

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

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