Exemplo n.º 1
0
 public async Task <User> GetByEmail(string email)
 {
     using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
     {
         return(await context.Users.FirstOrDefaultAsync(u => u.Email == email));
     }
 }
Exemplo n.º 2
0
 public async Task <User> GetByUserName(string username)
 {
     using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
     {
         return(await context.Users.FirstOrDefaultAsync(u => u.Username == username));
     }
 }
Exemplo n.º 3
0
        public async Task <T> Get(int id)
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                T entity = await context.Set <T>().FirstOrDefaultAsync((e) => e.ID == id);

                return(entity);
            }
        }
Exemplo n.º 4
0
        public async Task <IEnumerable <T> > GetAll()
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                IEnumerable <T> entities = await context.Set <T>().ToListAsync();

                return(entities);
            }
        }
Exemplo n.º 5
0
        public async Task <IEnumerable <Color> > GetColorForAdditionalPrice()
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                IEnumerable <Color> colorsForAdditionalPrice = await context.Colors
                                                               .Where(c => c.ForAdditionalMoney)
                                                               .ToListAsync();

                return(colorsForAdditionalPrice);
            }
        }
Exemplo n.º 6
0
        public async Task <IEnumerable <Color> > GetFreeColor()
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                IEnumerable <Color> freeColors = await context.Colors
                                                 .Where(c => c.ForAdditionalMoney == false)
                                                 .ToListAsync();

                return(freeColors);
            }
        }
Exemplo n.º 7
0
        public async Task <T> Create(T entity)
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                EntityEntry <T> createdResult = await context.Set <T>().AddAsync(entity);

                await context.SaveChangesAsync();

                return(createdResult.Entity);
            }
        }
Exemplo n.º 8
0
        public async Task <bool> Delete(int id)
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                T entity = await context.Set <T>().FirstOrDefaultAsync((e) => e.ID == id);

                context.Set <T>().Remove(entity);
                await context.SaveChangesAsync();

                return(true);
            }
        }
Exemplo n.º 9
0
        public async Task <T> Update(int id, T entity)
        {
            using (OrderBoatNewDbContext context = _contextFactory.CreateDbContext())
            {
                entity.ID = id;

                context.Set <T>().Update(entity);
                await context.SaveChangesAsync();

                return(entity);
            }
        }