本文整理汇总了C#中IDaoFactory.GetPagamentoDao方法的典型用法代码示例。如果您正苦于以下问题:C# IDaoFactory.GetPagamentoDao方法的具体用法?C# IDaoFactory.GetPagamentoDao怎么用?C# IDaoFactory.GetPagamentoDao使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDaoFactory
的用法示例。
在下文中一共展示了IDaoFactory.GetPagamentoDao方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: saveModalitaPagamento
public string saveModalitaPagamento(Azienda azienda, DettaglioTabellaSempliceDTO elemento, Gipasoft.Sfera.Enums.CRUDOperation operation, IDaoFactory daoFactory)
{
try
{
var message = string.Empty;
ModalitaPagamento item;
if (elemento.Id > 0)
item = daoFactory.GetModalitaPagamentoDao().Find(elemento.Id, false);
else
{
item = new ModalitaPagamento(elemento.Descrizione, elemento.DescrizioneBreve) {Azienda = azienda};
daoFactory.GetModalitaPagamentoDao().SaveOrUpdate(item);
}
if (item != null)
{
if (operation == Gipasoft.Sfera.Enums.CRUDOperation.Update)
{
item.Descrizione = elemento.Descrizione;
item.DescrizioneBreve = elemento.DescrizioneBreve;
item.Azienda = azienda;
item.Ordine = elemento.Ordine;
}
else if (operation == Gipasoft.Sfera.Enums.CRUDOperation.Delete)
{
var numeroPagamenti = daoFactory.GetPagamentoDao().GetCountByModalitaPagamento(elemento.Id);
if (numeroPagamenti == 0)
daoFactory.GetModalitaPagamentoDao().Delete(item);
else
message += $"Sono presenti {numeroPagamenti} pagamenti con la modalità '{item.Descrizione}'";
}
}
return message;
}
catch (Exception ex)
{
_log.Error("Errore nel salvataggio della modalità di pagamento: " + Utility.GetMethodDescription() + " - id:" + elemento.Id, ex);
throw;
}
}