Created
October 11, 2019 14:33
-
-
Save serkanince/65155d60371d527d10d9690f55bcc313 to your computer and use it in GitHub Desktop.
Repository-Sample
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Text; | |
namespace Sample.Repository | |
{ | |
public class SehirRepository | |
{ | |
AzureDBContext _context; | |
public SehirRepository(AzureDBContext context) | |
{ | |
_context = context; | |
} | |
public SehirEntity getAll(SehirEntity entity) | |
{ | |
return _context.SehirEntity.GetAll(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment