Exemplo n.º 1
0
        private void button27_Click(object sender, EventArgs e)
        {
            var spApp = new ApplicationProcessor(ConfigurationManager.AppSettings["SPStoragePath"]);

            MessageBox.Show(
                spApp.Delete(spApp.Gets().FirstOrDefault().Id).ToString()
                );

            dgv.DataSource = spApp.Gets().ToDataTable();
        }
Exemplo n.º 2
0
 public ApiOutputModel Delete(Guid id)
 {
     return(_ap.Delete(id));
 }