Exemple #1
0
    public string UpdateHomeDetails(string appUserId, string homeId, string newHomeName, string newAddress, string newLatitude, string newLongitude, string newAltitude, string newAccuracy)
    {
        string res = BLService.UpdateHomeDetails(int.Parse(appUserId), int.Parse(homeId), newHomeName, newAddress, newLatitude, newLongitude, newAltitude, newAccuracy);

        return(js.Serialize(res));
    }