19 lines
437 B
C#
19 lines
437 B
C#
using AppData;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace C_TRACK
|
|
{
|
|
public partial class closeAllRec : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// chiama la procedura che chiude tutte la fasi rimaste attive...
|
|
DLMan.taTR.closePending();
|
|
}
|
|
}
|
|
} |