示例#1
0
 public override bool DeleteData(int id, out Library.DTO.Notification notification)
 {
     notification = new Library.DTO.Notification()
     {
         Type = Library.DTO.NotificationType.Success
     };
     try
     {
         using (PODMngEntities context = CreateContext())
         {
             POD dbItem = context.POD.FirstOrDefault(o => o.PoDID == id);
             if (dbItem == null)
             {
                 notification.Message = "POD not found!";
                 return(false);
             }
             else
             {
                 context.POD.Remove(dbItem);
                 context.SaveChanges();
                 return(true);
             }
         }
     }
     catch (Exception ex)
     {
         notification.Type    = Library.DTO.NotificationType.Error;
         notification.Message = ex.Message;
         return(false);
     }
 }
示例#2
0
        public override DTO.PODMng.SearchFormData GetDataWithFilter(System.Collections.Hashtable filters, int pageSize, int pageIndex, string orderBy, string orderDirection, out int totalRows, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            DTO.PODMng.SearchFormData data = new DTO.PODMng.SearchFormData();
            data.Data = new List <DTO.PODMng.PODSearchResult>();
            totalRows = 0;

            string PoDUD   = null;
            string PoDName = null;

            if (filters.ContainsKey("PoDUD") && !string.IsNullOrEmpty(filters["PoDUD"].ToString()))
            {
                PoDUD = filters["PoDUD"].ToString().Replace("'", "''");
            }
            if (filters.ContainsKey("PoDName") && !string.IsNullOrEmpty(filters["PoDName"].ToString()))
            {
                PoDName = filters["PoDName"].ToString().Replace("'", "''");
            }

            try
            {
                using (PODMngEntities context = CreateContext())
                {
                    totalRows = context.PODMng_function_SearchPOD(PoDUD, PoDName, orderBy, orderDirection).Count();
                    var result = context.PODMng_function_SearchPOD(PoDUD, PoDName, orderBy, orderDirection);
                    data.Data = converter.DB2DTO_PODSearchResultList(result.Skip(pageSize * (pageIndex - 1)).Take(pageSize).ToList());
                }
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
            }
            return(data);
        }
示例#3
0
        public override DTO.PODMng.EditFormData GetData(int id, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            DTO.PODMng.EditFormData data = new DTO.PODMng.EditFormData();
            data.Data = new DTO.PODMng.POD();

            try
            {
                using (PODMngEntities context = CreateContext())
                {
                    data.Data = converter.DB2DTO_POD(context.PODMng_POD_View.FirstOrDefault(o => o.PoDID == id));
                }
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
            }

            return(data);
        }
示例#4
0
        public override bool UpdateData(int id, ref DTO.PODMng.POD dtoItem, out Library.DTO.Notification notification)
        {
            notification = new Library.DTO.Notification()
            {
                Type = Library.DTO.NotificationType.Success
            };
            int    number;
            string indexName;

            try
            {
                using (PODMngEntities context = CreateContext())
                {
                    POD dbItem = null;
                    if (id == 0)
                    {
                        dbItem = new POD();
                        context.POD.Add(dbItem);
                    }
                    else
                    {
                        dbItem = context.POD.FirstOrDefault(o => o.PoDID == id);
                    }
                    if (dbItem == null)
                    {
                        notification.Message = "POD not found";
                        return(false);
                    }
                    else
                    {
                        converter.DB2DTO_POD(dtoItem, ref dbItem);
                        context.SaveChanges();
                        dtoItem = GetData(dbItem.PoDID, out notification).Data;
                        return(true);
                    }
                }
            }
            catch (System.Data.DataException dEx)
            {
                notification.Type = Library.DTO.NotificationType.Error;
                Library.ErrorHelper.DataExceptionParser(dEx, out number, out indexName);
                if (number == 2601 && !string.IsNullOrEmpty(indexName))
                {
                    if (indexName == "PoDUDUniqe")
                    {
                        notification.Message = "The POD Code is already exists";
                    }
                }
                else
                {
                    notification.Message = dEx.Message;
                }
                return(false);
            }
            catch (Exception ex)
            {
                notification.Type    = Library.DTO.NotificationType.Error;
                notification.Message = ex.Message;
                return(false);
            }
        }