Ejemplo n.º 1
0
    protected void btnBegin_Click(object sender, EventArgs e)
    {
        //this starts the vehicleService
        //It writes to the Employee.VehicleService table
        //I just hard coded the location
        //we get the vehicleID from the session
        int vehID      = (int)Session["VehicleID"];
        int LocationID = 1;

        ae.usp_AddVehicleService(vehID, LocationID);
    }