public bool AddFromMobile(object data)
        {
            List <SqlParameter> parameterList = new List <SqlParameter>();

            string         procName    = "sp_T_Planing_Action_AfterAppliedCoating_Insert_Mobile";
            string         TPID        = "";
            SqlConnection  conn        = null;
            SqlTransaction transaction = null;

            isCan = true;
            try
            {
                if (data != null)
                {
                    conn        = OpenConnection();
                    transaction = conn.BeginTransaction();

                    T_Planing_Action_AfterAppliedCoatingMobileDTO obj = (T_Planing_Action_AfterAppliedCoatingMobileDTO)data;

                    command = new SqlCommand(procName, conn, transaction);

                    command.CommandType = CommandType.StoredProcedure;

                    parameterList.AddRange(GetParametersExactly(procName, obj, transaction).ToArray());
                    command.Parameters.AddRange(parameterList.ToArray());

                    command.ExecuteNonQuery();

                    TPID = obj.TPID;

                    if (obj.DeleteFiles != null && obj.DeleteFiles.Length > 0)
                    {
                        procName = "sp_T_Planing_Action_AfterAppliedCoating_Files_Delete_Mobile";
                        foreach (var fileNo in obj.DeleteFiles.Split(','))
                        {
                            if (fileNo != null && fileNo != "")
                            {
                                command = new SqlCommand(procName, conn, transaction);

                                command.CommandType = CommandType.StoredProcedure;

                                T_PlaningFileMobileDTO file = new T_PlaningFileMobileDTO();
                                file.TPID     = TPID;
                                file.No       = fileNo;
                                parameterList = new List <SqlParameter>();
                                parameterList.AddRange(GetParametersExactly(procName, file, transaction).ToArray());

                                command.Parameters.AddRange(parameterList.ToArray());

                                command.ExecuteNonQuery();
                            }
                        }
                    }

                    procName = "sp_T_Planing_Action_AfterAppliedCoating_Files_Insert_Mobile";
                    if (obj.UploadFileList != null && obj.UploadFileList.Count > 0)
                    {
                        foreach (T_PlaningFileMobileDTO file in obj.UploadFileList)
                        {
                            file.TPID = TPID;

                            command = new SqlCommand(procName, conn, transaction);

                            command.CommandType = CommandType.StoredProcedure;
                            if (file != null)
                            {
                                parameterList = new List <SqlParameter>();
                                parameterList.AddRange(GetParametersExactly(procName, file, transaction).ToArray());

                                command.Parameters.AddRange(parameterList.ToArray());
                            }

                            command.ExecuteNonQuery();
                        }
                    }

                    procName = "sp_T_Planing_Action_AfterAppliedCoating_DryFilmThickness_Insert_Mobile";
                    if (obj.DryFilmThicknessList != null && obj.DryFilmThicknessList.Count > 0)
                    {
                        foreach (T_Planing_Action_AfterAppliedCoating_DryFilmMobileDTO dto in obj.DryFilmThicknessList)
                        {
                            dto.TPID = TPID;

                            dto.ClockPosition1 = dto.ClockPosition1 == "" ? null : dto.ClockPosition1;
                            dto.ClockPosition2 = dto.ClockPosition2 == "" ? null : dto.ClockPosition2;
                            dto.ClockPosition3 = dto.ClockPosition3 == "" ? null : dto.ClockPosition3;
                            dto.ClockPosition4 = dto.ClockPosition4 == "" ? null : dto.ClockPosition4;
                            command            = new SqlCommand(procName, conn, transaction);

                            command.CommandType = CommandType.StoredProcedure;
                            if (dto != null)
                            {
                                parameterList = new List <SqlParameter>();
                                parameterList.AddRange(GetParametersExactly(procName, dto, transaction).ToArray());

                                command.Parameters.AddRange(parameterList.ToArray());
                            }

                            command.ExecuteNonQuery();
                        }
                    }

                    transaction.Commit();
                }
            }
            catch (Exception ex)
            {
                isCan = false;
                if (transaction != null)
                {
                    transaction.Rollback();
                }
                throw new Exception(ex.Message);
            }
            finally
            {
                CloseConnection();
            }
            return(isCan);
        }
        public HttpResponseMessage Add()
        {
            var deserializer = new JavaScriptSerializer();
            T_Planing_Action_AfterAppliedCoatingMobileBAL mobileBal = new T_Planing_Action_AfterAppliedCoatingMobileBAL();
            ResposeType         response   = new ResposeType();
            HttpResponseMessage mapMessage = null;

            bool result = false;
            T_Planing_Action_AfterAppliedCoatingMobileDTO dto = null;

            response.statusCode = false;
            try
            {
                var context = HttpContext.Current;
                context.Response.ContentType = "multipart/form-data";

                dto = ConvertX.GetReqeustFormExactly <T_Planing_Action_AfterAppliedCoatingMobileDTO>();
                string UserID = context.Request.Form["UserID"];
                if (ObjUtil.isEmpty(UserID))
                {
                    throw new Exception("UserID is require");
                }
                dto.CreateBy = UserID;
                dto.UpdateBy = UserID;
                List <T_Planing_Action_AfterAppliedCoating_DryFilmMobileDTO> DryFilmList = deserializer.Deserialize <List <T_Planing_Action_AfterAppliedCoating_DryFilmMobileDTO> >(context.Request.Form["DryFilmList"]);

                if (!ObjUtil.isEmpty(DryFilmList))
                {
                    foreach (T_Planing_Action_AfterAppliedCoating_DryFilmMobileDTO dryFilm in DryFilmList)
                    {
                        dryFilm.CreateBy = UserID;
                        dryFilm.UpdateBy = UserID;
                    }
                }

                dto.DryFilmThicknessList = DryFilmList;

                dto.UploadFileList = deserializer.Deserialize <List <T_PlaningFileMobileDTO> >(context.Request.Form["fileList"]);

                if (dto.UploadFileList != null && dto.UploadFileList.Count > 0)
                {
                    foreach (T_PlaningFileMobileDTO file in dto.UploadFileList)
                    {
                        file.DesPath  = context.Server.MapPath(planPath) + @"\" + file.PID + @"\" + file.UploadType;
                        file.FullPath = file.DesPath + @"\" + file.FileName;
                        logger.debug("PlanActionAfterAppliedCoating Add file:" + file.ToString());
                    }
                }

                logger.debug("PlanActionAfterAppliedCoating Add dto:" + dto.ToString());
                if (dto.DryFilmThicknessList != null && dto.DryFilmThicknessList.Count > 0)
                {
                    foreach (T_Planing_Action_AfterAppliedCoating_DryFilmMobileDTO dryFilm in dto.DryFilmThicknessList)
                    {
                        logger.debug("PlanActionAfterAppliedCoating Add DryFilmThickness:" + dryFilm.ToString());
                    }
                }

                result = mobileBal.AddFromMobile(dto);

                if (result)
                {
                    response.statusCode = true;
                    response.statusText = "Success";
                    try
                    {
                        // For new upload
                        if (dto.UploadFileList != null && dto.UploadFileList.Count > 0)
                        {
                            foreach (T_PlaningFileMobileDTO f in dto.UploadFileList)
                            {
                                if (DTO.PTT.Util.FileMng.HaveDirectory(f.DesPath))
                                {
                                    logger.debug("Save file to :" + f.FullPath);
                                    Utility.saveBase64File(f.FullPath, f.Base64File);
                                }
                            }
                        }
                        // For delete old file
                        if (dto.DeleteFileNames != null && dto.DeleteFileNames.Length > 0)
                        {
                            foreach (var fileName in dto.DeleteFileNames.Split(','))
                            {
                                if (fileName != "")
                                {
                                    var realDesFile = context.Server.MapPath(planPath) + @"\" + dto.PID + @"\" + fileName;
                                    DTO.PTT.Util.FileMng.DeleteFile(realDesFile);
                                }
                            }
                        }
                    }
                    catch (Exception e)
                    {
                        response.statusText = "Success but upload error:" + e.ToString();
                    }
                }
            }
            catch (Exception ex)
            {
                logger.error("Add error:" + ex.ToString());
                response.statusText = ex.ToString();
            }

            mapMessage = Request.CreateResponse(HttpStatusCode.OK, response);
            return(mapMessage);
        }