Ejemplo n.º 1
0
 private void DELRow(int iCoachID)
 {
     if (Master.AccessType == "R")
         return;
     var oCoach = new CSBC.Components.Season.clsCoaches();
     try
     {
         oCoach.DELRow(iCoachID, Master.CompanyId);
     }
     catch (Exception ex)
     {
         Session["ErrorMSG"] = "DELRow::" + ex.Message;
     }
     finally
     {
         oCoach = null;
     }
 }