public override bool UpdateData(int userId, int id, ref object dtoItem, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            DTO.AgentsDTO dtoAgents = ((Newtonsoft.Json.Linq.JObject)dtoItem).ToObject <DTO.AgentsDTO>();
            try
            {
                using (AgentsEntities context = CreateContext())
                {
                    Agents dbItem = null;
                    if (id > 0)
                    {
                        dbItem = context.Agents.Where(o => o.AgentID == id).FirstOrDefault();
                    }
                    else
                    {
                        dbItem = new Agents();
                        context.Agents.Add(dbItem);
                    }

                    if (dbItem == null)
                    {
                        notification.Message = "data not found!";
                        return(false);
                    }
                    else
                    {
                        //convert dto to db
                        converter.DTO2DB_Agents(dtoAgents, ref dbItem);
                        context.SaveChanges();
                        //get return data
                        dtoItem = GetData(dbItem.AgentID, out notification);
                        return(true);
                    }
                }
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
                notification.DetailMessage.Add(ex.Message);
                if (ex.GetBaseException() != null)
                {
                    notification.DetailMessage.Add(ex.GetBaseException().Message);
                }
                return(false);
            }
        }
Beispiel #2
0
 public void DTO2DB_Agents(DTO.AgentsDTO dtoItem, ref Agents dbItem)
 {
     AutoMapper.Mapper.Map <DTO.AgentsDTO, Agents>(dtoItem, dbItem);
 }