Flow LogonUser Detaylı Bilgileri
%SystemPath%\Common\eBALibrary.dll
using eBALibrary;
public void FlowGroup1_OnAfterEvent(object sender,OnAfterEventArguments args)
{
User user =Organization.GetUser(args.UserId);// o an butoana basan kişinin userid sini göre yapı oluşturu
Position userPos =Organization.GetPosition(args.PositionId); //o an butona basan kişinin pozisyon bilgisine göre yapı oluşturur
string adSoyAd = user.FirstName + " " + user.LastName;//userid ye göre ad soyadını verir
string pozisyonGorevi = userPos.Description; //position id sine göre açıklamasını verir
}