Exemplo n.º 1
0
    public string DeleteRoom(string userId, string homeId, string roomId)
    {
        int res = BLService.DeleteRoom(int.Parse(userId), int.Parse(homeId), int.Parse(roomId));

        return(js.Serialize(res));
    }