Ejemplo n.º 1
0
        public async Task LeaveJD(int driveId, int userId)
        {
            var userJoin = bbBContext.UserJoin.FirstOrDefault(x => x.DriveId == driveId && x.UserId == userId);

            try
            {
                bbBContext.Remove(userJoin);
                await bbBContext.SaveChangesAsync();
            }
            catch (Exception ex)
            {
                logger.Info(ex);
                throw;
            }
        }
Ejemplo n.º 2
0
        public async Task Delete(int id)
        {
            User result = await data.GetUser(id);

            context.Remove(result);
        }