public void Create(Credito credito) { try { var c = crudCredito.Retrieve <Credito>(credito); if (c != null) { throw new BussinessException(3); } if (credito.monto >= 20000) { crudCredito.Create(credito); } else { throw new BussinessException(2); } } catch (Exception ex) { ExceptionManager.GetInstance().Process(ex); } }
public void Create(Credito credito) { crudCredito.Create(credito); }