Skip to content

Instantly share code, notes, and snippets.

@asmorger
Last active February 19, 2016 12:55
Show Gist options
  • Save asmorger/e7ede721de1b2be32b75 to your computer and use it in GitHub Desktop.
Save asmorger/e7ede721de1b2be32b75 to your computer and use it in GitHub Desktop.
Cash Service Example
public class UserService
{
[Cache]
public User GetUserById(int id)
{
// your logic goes here
}
[Cash]
public IEnumerable<UserRole> GetByUser(User user)
{
// your logic goes here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment