Exemplo n.º 1
0
        public async Task SaveAsync(Benefits entity)
        {
            try
            {
                if (entity == null)
                {
                    return;
                }

                using (var timeLineContext = _contextFactory.GetTimeLineContext())
                {
                    var entityModel = await timeLineContext
                                      .Benefits
                                      .FirstOrDefaultAsync(item => item.Id.Equals(entity.Id));

                    if (entityModel == null)
                    {
                        entityModel = new DA.Benefits();
                        MapForUpdateentity(entity, entityModel);
                        await timeLineContext.Benefits.AddAsync(entityModel);
                    }
                    else
                    {
                        MapForUpdateentity(entity, entityModel);
                    }


                    timeLineContext.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Exemplo n.º 2
0
 private void MapForUpdateentity(Benefits entity, DA.Benefits daEntity)
 {
     daEntity.Id = entity.Id;
 }