public void Delete(Guest entity) { if (entity != null) { _appContext.GuestsDb().Remove(entity); _appContext.SaveChanges(); } }