Skip to content

Instantly share code, notes, and snippets.

@afsharm
Created July 3, 2011 09:00
Show Gist options
  • Save afsharm/1062087 to your computer and use it in GitHub Desktop.
Save afsharm/1062087 to your computer and use it in GitHub Desktop.
This is my first test sample git gist...
using System.Collections.Generic;
using MyApp.Common;
namespace MyApp.Server.Core
{
public interface IUserRepository : IRepository<User>
{
IList<User> GetAllUsers();
User GetUserByUserName(string userName);
int AddNewUser(string userName, string password, bool isLocked);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment