Beispiel #1
0
        public bool Modify(iPow.Infrastructure.Data.DataSys.Sys_ArticleClass entity, iPow.Infrastructure.Data.DataSys.Sys_AdminUser operUser)
        {
            var res = false;

            if (entity != null && entity.ClassID > 0)
            {
                try
                {
                    articleClassRepository.Modify(entity);
                    res = true;
                }
                catch (Exception ex)
                {
                }
            }
            return(res);
        }
Beispiel #2
0
        public bool DeleteTrue(iPow.Infrastructure.Data.DataSys.Sys_ArticleClass entity, iPow.Infrastructure.Data.DataSys.Sys_AdminUser operUser)
        {
            var res = false;

            if (entity != null)
            {
                try
                {
                    articleClassRepository.Delete(entity);
                    articleClassRepository.Uow.Commit();
                    res = true;
                }
                catch (Exception ex)
                {
                }
            }
            return(res);
        }
Beispiel #3
0
 public bool Delete(iPow.Infrastructure.Data.DataSys.Sys_ArticleClass entity, iPow.Infrastructure.Data.DataSys.Sys_AdminUser operUser)
 {
     throw new NotImplementedException();
 }