Created
July 3, 2011 09:00
-
-
Save afsharm/1062087 to your computer and use it in GitHub Desktop.
This is my first test sample git gist...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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