Skip to content

Instantly share code, notes, and snippets.

@srdjan
Created June 25, 2014 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srdjan/77d4cddb31891c59f40c to your computer and use it in GitHub Desktop.
Save srdjan/77d4cddb31891c59f40c to your computer and use it in GitHub Desktop.
using SimplR.Resources;
using SimplR.Hypermedia;
using SimplR.Services;
using App.Domain.Users;
namespace App.Handlers.Users {
public class UsersHandler : IHandler<User> {
public List<User> Query(Expression expr) {...}
public void CreateCommand(User user) {...}
public void UpdateCommand(User user) {...}
public void DeleteCommand(User user) {...}
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment