Esempio n. 1
0
        public Hr_Jobs GetByIdWithOutBranch(string strJob_Id)
        {
            StackFrame stackFrame = new StackFrame();
            MethodBase methodBase = stackFrame.GetMethod();


            try
            {
                OpenEntityConnection();
                Hr_Jobs JobsForGetEntity = (from objLinq in objPharmaEntities.Hr_Jobs
                                            where objLinq.Job_Id == strJob_Id && objLinq.Rec_Status == 0
                                            select objLinq).FirstOrDefault();
                return(JobsForGetEntity);
            }
            catch (Exception ex)
            {
                catchEntityvalidation((System.Data.Entity.Validation.DbEntityValidationException)ex, System.Runtime.InteropServices.Marshal.GetExceptionCode().ToString(),
                                      this.UserNameProperty.ToString(), this.GetType().Name.ToString(), methodBase.Name.ToString());
                ex.InnerException.Message.ToString();
                return(null);
            }
            finally
            {
                CloseEntityConnection();
            }
        }
Esempio n. 2
0
        public List <Hr_Jobs> SelectAllByCompanyAndBranch(string strcomapny, string strbranch)
        {
            StackFrame stackFrame = new StackFrame();
            MethodBase methodBase = stackFrame.GetMethod();

            try
            {
                OpenEntityConnection();
                List <Hr_Jobs> objlist = new List <Hr_Jobs>();


                string sql = "select [Company_Id],[Branch_Id],[Job_Code]";
                sql = sql + ",[Job_Id],[Job_Name],[Job_NameEn],[Job_NameConv],GradeJob_Id,[InsUser],[InsDate]";
                sql = sql + ",[UpdateUser],UpdateDate,DeleteUser,DeleteDate,Rec_Status,IsManager";

                sql = sql + " from Hr_Jobs where Rec_Status = 0 and Company_Id='" + strcomapny + "' and Branch_Id='" + strbranch + "'";
                sql = sql + " Order by Id";

                //  List<Hr_Jobs> objectList = (from objLinq in objPharmaEntities.Hr_Jobs
                //                       where objLinq.Rec_Status == 0 && objLinq.Branch_Id == strbranch && objLinq.Company_Id == strcomapny
                //              select objLinq).ToList();



                List <Hr_Jobs> objectlist = objPharmaEntities.Database.SqlQuery <Hr_Jobs>(sql).ToList();

                if (objectlist != null)
                {
                    foreach (var obj in objectlist)
                    {
                        Hr_Jobs objHr_Jobs = new Hr_Jobs();
                        objHr_Jobs.Company_Id  = obj.Company_Id;
                        objHr_Jobs.Branch_Id   = obj.Branch_Id;
                        objHr_Jobs.Job_Code    = obj.Job_Code;
                        objHr_Jobs.GradeJob_Id = obj.GradeJob_Id;
                        objHr_Jobs.Job_Name    = obj.Job_Name;
                        objHr_Jobs.Job_NameEn  = obj.Job_NameEn;
                        objHr_Jobs.IsManager   = obj.IsManager;
                        objHr_Jobs.Job_Id      = obj.Job_Id;

                        objlist.Add(objHr_Jobs);
                    }
                }

                return(objlist);
            }
            catch (Exception ex)
            {
                catchEntityvalidation((System.Data.Entity.Validation.DbEntityValidationException)ex, System.Runtime.InteropServices.Marshal.GetExceptionCode().ToString(),
                                      this.UserNameProperty.ToString(), this.GetType().Name.ToString(), methodBase.Name.ToString());
                ex.InnerException.Message.ToString();
                return(null);
            }
            finally
            {
                CloseEntityConnection();
            }
        }
Esempio n. 3
0
        public bool UpdateTaskWithOutBranch(Hr_Jobs objUpdate)
        {
            StackFrame stackFrame = new StackFrame();
            MethodBase methodBase = stackFrame.GetMethod();

            // bool task = Update(objInsert).Result;
            //return task;
            int rowEffected = 0;

            try
            {
                if (objUpdate != null) //Definsive Programming
                {
                    OpenEntityConnection();
                    Hr_Jobs ObjForUpdate = (from objLinq in objPharmaEntities.Hr_Jobs
                                            where objLinq.Job_Id == objUpdate.Job_Id
                                            select objLinq).FirstOrDefault();



                    ObjForUpdate.Job_Name     = objUpdate.Job_Name;
                    ObjForUpdate.Job_NameEn   = objUpdate.Job_NameEn;
                    ObjForUpdate.Job_NameConv = objUpdate.Job_NameConv;
                    ObjForUpdate.Job_Code     = objUpdate.Job_Code;
                    ObjForUpdate.IsManager    = objUpdate.IsManager;
                    ObjForUpdate.GradeJob_Id  = objUpdate.GradeJob_Id;

                    ObjForUpdate.UpdateUser = objUpdate.UpdateUser;
                    ObjForUpdate.UpdateDate = DateTime.Now;

                    rowEffected = objPharmaEntities.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                catchEntityvalidation((System.Data.Entity.Validation.DbEntityValidationException)ex, System.Runtime.InteropServices.Marshal.GetExceptionCode().ToString(),
                                      this.UserNameProperty.ToString(), this.GetType().Name.ToString(), methodBase.Name.ToString());
                rowEffected = -1;
                ex.InnerException.Message.ToString();
            }
            finally
            {
                CloseEntityConnection();
            }
            if (rowEffected > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 4
0
        public async Task <bool> Delete(Hr_Jobs objDelete)
        {
            StackFrame stackFrame = new StackFrame();
            MethodBase methodBase = stackFrame.GetMethod();

            int rowEffected = 0;

            try
            {
                if (objDelete != null) //Definsive Programming
                {
                    OpenEntityConnection();
                    Hr_Jobs objForDelete = (from objLinq in objPharmaEntities.Hr_Jobs
                                            where objLinq.Job_Id == objDelete.Job_Id && objLinq.Company_Id == objDelete.Company_Id && objLinq.Branch_Id == objDelete.Branch_Id
                                            select objLinq).FirstOrDefault();
                    objForDelete.Rec_Status = 1;
                    objForDelete.DeleteUser = objDelete.DeleteUser;
                    objForDelete.DeleteDate = DateTime.Now;

                    rowEffected = await objPharmaEntities.SaveChangesAsync();
                }
            }
            catch (Exception ex)
            {
                catchEntityvalidation((System.Data.Entity.Validation.DbEntityValidationException)ex, System.Runtime.InteropServices.Marshal.GetExceptionCode().ToString(),
                                      this.UserNameProperty.ToString(), this.GetType().Name.ToString(), methodBase.Name.ToString());
                rowEffected = -1;
                ex.InnerException.Message.ToString();
            }
            finally
            {
                CloseEntityConnection();
            }
            if (rowEffected > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 5
0
        // Calling the method of using Async
        //public  int test() {
        //    int task =  Insert().Result;
        //    return task;

        //}
        public int InsertTask(Hr_Jobs objInsert)
        {
            StackFrame stackFrame = new StackFrame();
            MethodBase methodBase = stackFrame.GetMethod();

            //int result = Insert(objInsert).Result;
            //return result;

            int RowEffected = 0;

            try
            {
                if (objInsert != null)
                {
                    OpenEntityConnection();
                    objInsert.InsDate = DateTime.Now;//DateTime.Today;


                    objPharmaEntities.Hr_Jobs.Add(objInsert);
                    RowEffected = objPharmaEntities.SaveChanges();
                }
            }
            catch (Exception ex)
            {
                catchEntityvalidation((System.Data.Entity.Validation.DbEntityValidationException)ex, System.Runtime.InteropServices.Marshal.GetExceptionCode().ToString(),
                                      this.UserNameProperty.ToString(), this.GetType().Name.ToString(), methodBase.Name.ToString());

                RowEffected = -1;
                ex.InnerException.Message.ToString();
            }
            finally
            {
                CloseEntityConnection();
            }
            return(RowEffected);
        }