public void InsertAclog(ACLog lACLog)
 {
     using (SqlConnection con = new SqlConnection(connectionString))
     {
         try
         {
             SqlCommand com = new SqlCommand();
             com.Connection  = con;
             com.CommandText = "insert into LACLOG";
         }
         catch (Exception ex)
         {
             logger.Log("", ex);
         }
     }
 }
 public void DeleteAClog(ACLog lACLog)
 {
     throw new NotImplementedException();
 }