public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            TypeCellView customCell = tableView.CellAt(indexPath) as TypeCellView;

            customCell.SelectOption();
            var status = tipo[indexPath.Row];

            NSUserDefaults.StandardUserDefaults.SetString(status, "OrderStatus");
        }
        public override void RowDeselected(UITableView tableView, NSIndexPath indexPath)
        {
            TypeCellView customCell = tableView.CellAt(indexPath) as TypeCellView;

            customCell.DeselectOption();
        }