当前位置: 首页>>代码示例>>C#>>正文


C# IDaoFactory.GetPraticaDao方法代码示例

本文整理汇总了C#中IDaoFactory.GetPraticaDao方法的典型用法代码示例。如果您正苦于以下问题:C# IDaoFactory.GetPraticaDao方法的具体用法?C# IDaoFactory.GetPraticaDao怎么用?C# IDaoFactory.GetPraticaDao使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IDaoFactory的用法示例。


在下文中一共展示了IDaoFactory.GetPraticaDao方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: saveTipoPratica

        public string saveTipoPratica(Azienda azienda, DettaglioTabellaSempliceDTO elemento, Gipasoft.Sfera.Enums.CRUDOperation operation, IDaoFactory daoFactory)
        {
            try
            {
                string message = string.Empty;

                if (!string.IsNullOrEmpty(elemento.DescrizioneBreve))
                {
                    TipoPratica item;
                    if (elemento.Id > 0)
                        item = daoFactory.GetTipoPraticaDao().Find(elemento.Id, false);
                    else
                    {
                        item = new TipoPratica(elemento.DescrizioneBreve, elemento.Descrizione);
                        daoFactory.GetTipoPraticaDao().SaveOrUpdate(item);
                    }

                    if (item != null)
                    {
                        if (operation == Gipasoft.Sfera.Enums.CRUDOperation.Update)
                        {
                            var descrizioneBreve = elemento.DescrizioneBreve;
                            if (!string.IsNullOrEmpty(descrizioneBreve) && descrizioneBreve.Length > 3)
                                descrizioneBreve = descrizioneBreve.Substring(0, 3);

                            item.Descrizione = elemento.Descrizione;
                            item.Codice = descrizioneBreve;
                            item.Azienda = azienda;
                        }
                        else if (operation == Gipasoft.Sfera.Enums.CRUDOperation.Delete)
                        {
                            var numeroPratiche = daoFactory.GetPraticaDao().GetCountByTipo(item.ID);
                            if (numeroPratiche == 0)
                                daoFactory.GetTipoPraticaDao().Delete(item);
                            else
                                return
                                    $"Non è possibile eliminare il tipo pratica perchè sono presenti {numeroPratiche} pratiche collegate";
                        }
                    }
                }
                else
                    message = "E' obbligatorio il codice pratica";

                return message;
            }
            catch (Exception ex)
            {
                
                _log.Error("Errore nel salvataggio del tipo di pratica: " + Utility.GetMethodDescription() + " - id:" + elemento.Id, ex);
                throw;
            }
        }
开发者ID:gipasoft,项目名称:Sfera,代码行数:52,代码来源:TabelleRepository.cs


注:本文中的IDaoFactory.GetPraticaDao方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。