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

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

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