IPrjExecutors. Интерфейс к табличному враперу 'Исполнители (ресурсы)' Назад В начало Вперед

Файл: Example\Src\VIP\Common\IPrjExecutors.vih

Издание 01.2007. Добавлены директивы документирования.

Включен в проект начиная с издания 03.2005.

//******************************************************************************
//													(c) корпорация Галактика
// Демопроект 1.0 - Ядро приложения
// Интерфейс врапера 'Исполнители'
//******************************************************************************

#ifndef __PRJEXECUTORS__VIH__
#define __PRJEXECUTORS__VIH__

#component "C_CORE"

#include IModify.vih
#include IManualIndex.vih

//******************************************************************************
#doc
 Интерфейс к данным по использованию трудовых ресурсов в проекте.
#end

public ObjInterface IPrjExecutors;
  property NRec				 : comp read write;
  property cEmployee			: comp read write;
  property cMaster			: comp read write;
  property MasterCode		 : word read write;
  property Status			 : byte read write;
  property QuantP			 : double read write;
  property QuantF			 : double read write;
  property SummP				: double read write;
  property SummF				: double read write;

  index PrjExecutors0 = NRec(unique, primary);
  index PrjExecutors01 = MasterCode, cMaster, Status, cEmployee;
  index REF_PrjExecutors_4 = cEmployee;

end;

//******************************************************************************

public VipInterface twPrjExecutors implements IPrjExecutors, IModify, IManualIndex licensed(free);
public:
  constructor Init;
end;

#endif