Skip to content

Instantly share code, notes, and snippets.

@ro31337
Created August 22, 2014 11:50
Show Gist options
  • Save ro31337/b63458dcfcd4e1611428 to your computer and use it in GitHub Desktop.
Save ro31337/b63458dcfcd4e1611428 to your computer and use it in GitHub Desktop.
public class CompanyService
{
// ...
public Delete(long companyId)
{
var company = GetById(companyId);
company.IsDeleted = true;
database.SaveChanges();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment