Skip to main content

Cash book

General

Web service type: Command & Query Web Services

Resource location: /webservices/CashBookService.svc?wsdl

Commands

CreateCashBook

public abstract class CashBookCommand : Command
{
public String Code; // Code of the cash book to be created.
}

public class CreateCashBook : CashBookCommand
{
public String Name; // The name of the cash book.
public String GeneralLedgerAccount; // The cash book general ledger account.
}

ChangeCashBookName

public abstract class CashBookCommand : Command
{
public String Code; // Code of the cash book to be changed.
}

public class ChangeCashBookName : CashBookCommand
{
public String Name; // The new name of the cash book.
}

ChangeCashBookShortName

public abstract class CashBookCommand : Command
{
public String Code; // Code of the cash book to be changed.
}

public class ChangeCashBookShortName : CashBookCommand
{
public String ShortName; // The new short name of the cash book.
}

ChangeCashBookGeneralLedgerAccount

public abstract class CashBookCommand : Command
{
public String Code; // Code of the cash book to be changed.
}

public class ChangeCashBookGeneralLedgerAccount : CashBookCommand
{
public String GeneralLedgerAccount; // The new general ledger account of the cash book.
}

Queries

GetCashBook

public class GetCashBook : Query
{
public String Code; // Code of the cash book to be retrieved.
}