Exemplo n.º 1
0
    public string UpdateRoomDetails(string appUserId, string homeId, string roomId, string newRoomName, string newRoomTypeCode, string newShareStatus)
    {
        string res = BLService.UpdateRoomDetails(int.Parse(appUserId), int.Parse(homeId), int.Parse(roomId), newRoomName, newRoomTypeCode, newShareStatus);

        return(js.Serialize(res));
    }