Created
December 31, 2022 05:33
-
-
Save Dark-Rex01/879ed4105d61b2605d02518828e32a4b to your computer and use it in GitHub Desktop.
This file contains 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
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