Skip to content

Instantly share code, notes, and snippets.

@malikmasis
Created July 25, 2020 14:23
Show Gist options
  • Save malikmasis/3c10415669437e69002353809db3901a to your computer and use it in GitHub Desktop.
Save malikmasis/3c10415669437e69002353809db3901a to your computer and use it in GitHub Desktop.
Example Codes for Medium
public interface IGenericRepository<T>
{
T FindById(object EntityId);
void Insert(T Entity);
void Update(T Entity);
void Delete(T Entity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment