Tecsitel_FactuGES2/Source/Modulos/Albaranes de cliente/Controller/View/uIEditorAlbaranesClientePreview.pas
2013-03-11 16:10:38 +00:00

24 lines
543 B
ObjectPascal

unit uIEditorAlbaranesClientePreview;
interface
uses
uEditorPreview;
type
IEditorAlbaranesClientePreview = interface(IEditorPreview)
['{F58BF987-28EB-485A-B953-55BDEEBE2C91}']
procedure SetVerPrecios(const Value: Boolean);
function GetVerPrecios: Boolean;
property VerPrecios : Boolean read GetVerPrecios write SetVerPrecios;
function GetVerRef: Boolean;
procedure SetVerRef(const Value: Boolean);
property VerRef : Boolean read GetVerRef write SetVerRef;
end;
implementation
end.