Files
b2bcondomini.it/PUB/CronJobs.aspx.cs
T
Samuele E. Locatelli 2b739a5411 Update ER
2018-07-28 10:45:10 +02:00

34 lines
832 B
C#

using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace PUB
{
public partial class CronJobs : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
checkRichieste();
}
/// <summary>
/// verifica le richeiste non prese in carico e notifica B2BC
/// </summary>
private void checkRichieste()
{
// verifico richieste NON in carico...
// invio email a B2BC / Amministratore condominio... base URL poi pagine come PBO / PAM / PAZ
}
protected string urlDettaglio(string roleUrl)
{
string baseUrl = memLayer.ML.CRS("baseUrl");
return string.Format("{0}/{1}/DettaglioIntervento?idxRichiesta=", baseUrl, roleUrl);
}
}
}