Skip to content

Instantly share code, notes, and snippets.

@Dark-Rex01
Created December 31, 2022 05:33
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 Dark-Rex01/879ed4105d61b2605d02518828e32a4b to your computer and use it in GitHub Desktop.
Save Dark-Rex01/879ed4105d61b2605d02518828e32a4b to your computer and use it in GitHub Desktop.
namespace Repository.User
{
public interface IUserRepository
{
IEnumerable<User> GetAll();
User GetById(int UserID);
void Insert(User user);
void Update(User user);
void Delete(int UserID);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment