Exemplo n.º 1
0
 public Customer GetById(int id)
 {
     using (var db = new WebContextDb())
     {
         return(db.Customer.FirstOrDefault(p => p.Id == id));
     }
 }
Exemplo n.º 2
0
 public List <T> GetList()
 {
     using (var db = new WebContextDb())
     {
         return(db.Set <T>().ToList());
     }
 }
Exemplo n.º 3
0
 public Customer GetCompletePersonById(int id)
 {
     using (var db = new WebContextDb())
     {
         return(db.Customer
                .Include(p => p.Id)
                .FirstOrDefault(p => p.Id == id));
     }
 }
Exemplo n.º 4
0
 public List <Customer> GetListBySize(int size)
 {
     using (var db = new WebContextDb())
     {
         return(db.Customer
                .OrderByDescending(p => p.Order)
                .Take(size).ToList());
     }
 }
Exemplo n.º 5
0
 public BaseRepositorio(WebContextDb @object)
 {
     this.@object = @object;
 }
Exemplo n.º 6
0
 public BaseRepositorio()
 {
     db = new Repositorio.WebContextDb();
 }