Esempio n. 1
0
 public RoundResult GetById(int id)
 {
     using (var dbContext = new LottoContext())
     {
         return(dbContext.RoundResults.FirstOrDefault(x => x.Id == id));
     }
 }
Esempio n. 2
0
 public IEnumerable <User> GetAll()
 {
     using (var dbContext = new LottoContext())
     {
         return(dbContext.Users.ToList());
     }
 }
Esempio n. 3
0
 public IEnumerable <RoundResult> GetAll()
 {
     using (var dbContext = new LottoContext())
     {
         return(dbContext.RoundResults.ToList());
     }
 }
Esempio n. 4
0
 public User GetById(int id)
 {
     using (var dbContext = new LottoContext())
     {
         return(dbContext.Users.FirstOrDefault(x => x.Id == id));
     }
 }
Esempio n. 5
0
 public IEnumerable <Ticket> GetAll()
 {
     using (var dbContext = new LottoContext())
     {
         return(dbContext.Tickets.ToList());
     }
 }
Esempio n. 6
0
 public void Update(RoundResult entity)
 {
     using (var dbContext = new LottoContext())
     {
         dbContext.RoundResults.Update(entity);
         dbContext.SaveChanges();
     }
 }
Esempio n. 7
0
 public void Update(User entity)
 {
     using (var dbContext = new LottoContext())
     {
         dbContext.Users.Update(entity);
         dbContext.SaveChanges();
     }
 }
Esempio n. 8
0
 public void Delete(User entity)
 {
     using (var dbContext = new LottoContext())
     {
         dbContext.Users.Remove(entity);
         dbContext.SaveChanges();
     }
 }
Esempio n. 9
0
 public void Update(Ticket entity)
 {
     using (var dbContext = new LottoContext())
     {
         dbContext.Tickets.Update(entity);
         dbContext.SaveChanges();
     }
 }
Esempio n. 10
0
 public DrawsRepo(LottoContext lottoContext)
 {
     _lottoContext = lottoContext;
 }
 public LoteriaController(LottoContext context)
 {
     _context = context;
 }