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(); }
public ApiOutputModel Delete(Guid id) { return(_ap.Delete(id)); }