internal static void _LottoPalleDs_addRow(LottoPalleRow row) { if (_DsLotto.LottoPalle.FindByidnPallatipoPalla(row.id, row.nPalla, row.tipoPalla) == null) { _DsLotto.LottoPalle.AddLottoPalleRow(row); } }
internal static LottoPalleRow _LottoPalleDs_newRow(int id, int numeroPalla, string tipoPalla) { LottoPalleRow row = _DsLotto.LottoPalle.NewLottoPalleRow(); row.id = id; row.nPalla = numeroPalla; row.tipoPalla = tipoPalla; return(row); }