Ejemplo n.º 1
0
        public bool EditNamaPenyusutan(NamaPenyusutan oData)
        {
            methodName = "EditNamaPenyusutan";
            traceID    = 1;

            using (var uow = new UnitOfWork(AppConfig.Current.ContextName))
            {
                traceID = 2;
                var oDBData = uow.NamaPenyusutan.Get(oData.Id);
                if (oDBData != null)
                {
                    using (var trans = uow.BeginTransaction())
                    {
                        try
                        {
                            traceID = 3;
                            oDBData.MapFrom(oData);
                            uow.NamaPenyusutan.Update(oDBData);
                            uow.Save();

                            traceID = 4;
                            trans.Commit();
                        }
                        catch (Exception ex)
                        {
                            trans.Rollback();
                            throw new AppException(500, methodName, traceID, ex);
                        }
                    }
                }
            }

            return(true);
        }
Ejemplo n.º 2
0
        public bool RemoveNamaPenyusutan(int id)
        {
            methodName = "RemoveNamaPenyusutan";
            traceID    = 1;

            using (var uow = new UnitOfWork(AppConfig.Current.ContextName))
            {
                using (var trans = uow.BeginTransaction())
                {
                    try
                    {
                        traceID = 2;
                        NamaPenyusutan oDBNamaPenyusutan = uow.NamaPenyusutan.SingleOrDefault(m => m.Id == id);
                        if (oDBNamaPenyusutan != null)
                        {
                            traceID = 3;
                            uow.NamaPenyusutan.Remove(id);
                            uow.Save();
                        }

                        traceID = 5;
                        trans.Commit();
                    }
                    catch (Exception ex)
                    {
                        trans.Rollback();
                        throw new AppException(500, methodName, traceID, ex);
                    }
                }
            }

            return(true);
        }
Ejemplo n.º 3
0
        public int AddNamaPenyusutan(NamaPenyusutan oData)
        {
            methodName = "AddNamaPenyusutan";
            traceID    = 1;

            using (var uow = new UnitOfWork(AppConfig.Current.ContextName))
            {
                using (var trans = uow.BeginTransaction())
                {
                    try
                    {
                        traceID = 2;
                        NamaPenyusutan oNewNamaPenyusutan = new NamaPenyusutan();
                        oNewNamaPenyusutan.MapFrom(oData);
                        oNewNamaPenyusutan = uow.NamaPenyusutan.Add(oNewNamaPenyusutan);
                        uow.Save();

                        traceID  = 3;
                        oData.Id = oNewNamaPenyusutan.Id;
                        trans.Commit();
                    }
                    catch (Exception ex)
                    {
                        trans.Rollback();
                        throw new AppException(500, methodName, traceID, ex);
                    }
                }
            }

            return(oData.Id);
        }