Example #1
0
        public bool Delete(Nt_Func item, Session session = null)
        {
            //LoggerFactory.CreateLog().Start();
            var committed = 0;

            try
            {
                //if (session != null)
                //    _repositoryNt_Func.UnitOfWork.SetConnectionDb(session.ConnectionString);

                if (item == null)
                {
                    throw new ArgumentNullException("item");
                }

                // Domain Services?
                //_repositoryNt_Func.Delete(Mapper.Map<Dominio.Entidades.Nt_Func>(item));
                _repositoryNt_Func.Delete(item);
                committed = _unitOfWorkAsync.SaveChanges();
            }
            catch (Exception ex)
            {
                //LoggerFactory.CreateLog().Error(ex);
            }

            //LoggerFactory.CreateLog().Stop();
            return(committed > 0);
        }
Example #2
0
        public bool Update(Nt_Func item, Session session = null)
        {
            //LoggerFactory.CreateLog().Start();
            var committed = 0;

            try
            {
                //if (session != null)
                //    _repositoryNt_Func.UnitOfWork.SetConnectionDb(session.ConnectionString);

                if (item == null)
                {
                    throw new ArgumentNullException("item");
                }

                var validator = EntityValidatorFactory.CreateValidator();
                if (validator.IsValid(item))
                {
                    // Domain Services?
                    //_repositoryNt_Func.Update(Mapper.Map<Dominio.Entidades.Nt_Func>(item));
                    _repositoryNt_Func.Update(item);
                    committed = _unitOfWorkAsync.SaveChanges();
                }
                else
                {
                    throw new ApplicationValidationErrorsException(validator.GetInvalidMessages(item));
                }
            }
            catch (Exception ex)
            {
                //LoggerFactory.CreateLog().Error(ex);
            }

            //LoggerFactory.CreateLog().Stop();
            //_repositoryNt_Func.Update(entity);
            return(committed > 0);
        }
Example #3
0
 public void ApplyChanges(Nt_Func entity)
 {
     _repositoryNt_Func.ApplyChanges(entity);
 }
Example #4
0
 public Nt_FuncCrudViewModel()
 {
     Nt_Func = new Nt_Func();
 }