PublicAPI.Projects.Budget.BudgetIncome.CreateRef ELMA API Documentation
Create budget income item
 
 
Syntax

[BrowsableAttribute(false)]
[ObsoleteAttribute("Этот метод устарел. Используйте Create(string name, string description)", 
	true)]
public BudgetIncomeItemRef CreateRef(
	string name,
	string description
)

Return Value

Type: BudgetIncomeItemRef
Budget income item
Examples

//item name 
var name = "New budget income item";
//item description 
var description = "Budget income item description";

//create budget income item 
var incomeRef = PublicAPI.Projects.Objects.BudgetIncomeItemRef.CreateBudgetIncomeRef(name, description);

//incomeRef - created budget income item
See Also