با سلام و عرض ادب. در خدمت دوستان عزیز هستیم با آموزش Workflow – آموزش کار با آرگومان ورودی در Workflow از وب سایت آموزش برنامه نویسی سورس باران. در این دوره، آموزش Workflow در ۴۶ جلسه بصورت متنی به شما آموزش داده خواهد شد. در این جلسه قصد داریم سیستم گردش فرمی ایجاد کنیم که هنگام initialize شدن چند آرگومان را بپذیرد. در WF5 با استفاده از InArgument ها می توانیم داده ها را داخل یک اکتیویتی استفاده نماییم.لطفا با ما همراه باشید…
این دوره جهت حفظ حقوق نویسنده از سایت حذف شده، مطالب جدیدتری بزودی در سایت قرار میگیرد
آموزش کار با آرگومان ورودی در Workflow
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
Greetings and admirable wisdom. We are in the service of our dear friends by working with Workflow Training - Working with Input Argument in Workflow from the Source for Raining Programming Web site. In this course, Workflow training will be provided to you in 46 sessions. In this session, we are going to create a circular flow system that accepts multiple arguments when initializing. In WF5, using InArguments, we can use data in an activity. Please come along with us ... Work with the input argument in Workflow The UseInArgument workflow project includes the following four steps Create a Project Workflow Console Application Create Workflow and Define Input Arguments Write C # Codes and set arguments Run Workflow Add a new project from Workflow Console Application In the Solution Explorer panel, right-click on the Solution Chapter01 and select the ADD option under the New Project menu. In the Add New Project window, select the workflow option, and then select Workflow Console Application from the right side of the window. Now set the Name field to the UseInArgument value and finally click on the OK button. Create workflow and define input arguments Open the Workflow1.xaml file from the Solution Explorerr panel and create Workflow as shown below To define the argument, click the Arguments tab at the bottom of the Workflow1.xaml window and start defining two arguments named FirstName and SecondName of type String and In. Write C # Codes and set arguments But then open the Program.cs file and change the following sub-codes (red part) using system; using system.Linq; using System.Activities; using System.Activities.Statements; namespace UseInArgument { class program { static void Main (string [] args) { Activity workflow1 = new Workflow1 () { FirstName = "Arat" SecondName = "Arat Bayat" }; WorkflowInvoker.Invoke (workflow1); Console.ReadLine (); } } } Run Workflow Set the UseInArgument project as a StartUp project and press Ctrl + F5 shortcut to run Workflow. This will save the Workflow and will display the result without debugging. The result is executed in the Windows console and the arguments are displayed tip!!! In the WF3, we added the feature that we can pass to a workflow in a complex workflow. So in addition to the previous method, the following can be used to set the FirstName and SecondName arguments using System.Activities; using System.Activities.Statements; using System.Collections.Generic; namespace UseInArgument { class program { static void Main (string [] args) { IDictionary <string, object> inputDictionary = new Dictionary <string, object> () { {"FirstName", "Arat"}, {"SecondName", "Arat Bayat"} }; WorkflowInvoker.Invoke (new Workflow1 (), inputDictionary); } } } be successful and victorious... |
اصطلاحات گردش کار
گردش کار در تمامی زمینه ها و حوزه ها و صنایع نظیر دانشگاه ها، صنایع بهداشتی و پزشکی، موسسات مالی و اعتباری، بانکها و تمامی سازمان ها و ارگان های دولتی اشاره نمود. به طور معمول در این زمینه اصطلاحاتی به گوشتان می خورند که بهتر است با انها آشنا شوید.
- مدیریت گردش کار یا Workflow Management: این اصطلاح به معنی مدیریت جریان کار در سازمان یا ارگان می باشد و به این معنی است که کار باید در زمان مناسب انجام شود. در حقیقت وظیفه اصلی این بخش ارسال کارهای روزانه سازمان به اشخاص مناسب به هنگام مشخص می باشد و می توان آن را پیگیری نمود.
- سیستم گردش کار یا Workflow System: این سیستم در واقع حمایت کننده و پشتیبان گروهی از فرآیندهای کسب و کار می باشد و تعریف شدن و ساخته شدن آن به وسیله فرآیندهای رایانه ای انجام می شود.
- موتور گردش کار یا Workflow Engine: هر سیستم گردش کاری تشکیل شده از چندین موتور می باشد که در دست گیرنده بخشی یا کلی از سیستم کنترل گردش کاری را به دست دارد.
گردش کارها به طور کلی به سه دسته تقسیم می شوند که عبارتند از:
- ترتیبی: در این مدل امکان برگشت به مراحل قبلی وجود نخواهد داشت.
- سیستمی: این گردش کار ها پیچیده تر می باشند و قابلیت برگشت پذیری به گاه ها و مراحل قبلی را دارند.
- مبتنی بر قوانین: تنها تفاوت این دسته با دسته ترتیبی در این می باشد که پیشرفت در فرایند به وسیله قوانین تعیین می گردند.
منابع : Introduction-to-workflows
bpm-tutorial/workflow-tutorial
Workflow_Fundamentals
راستی! برای دریافت مطالب جدید در کانال تلگرام یا پیج اینستاگرام سورس باران عضو شوید.
- حجم فايل : 401 کیلوبایت
- منبع : سورس باران
- رمز فايل : www.sourcebaran.com
- انتشار: ۵ مهر ۱۳۹۳
دسته بندی موضوعات
- آموزش ارز دیجیتال
- آموزش برنامه نویسی
- آموزش متنی برنامه نویسی
- اطلاعیه و سایر مطالب
- پروژه برنامه نویسی
- رپورتاژ
- فروشگاه
- فیلم های آموزشی
- ++C
- ADO.NET
- Adobe Flash
- Ajax
- AngularJS
- apache
- ARM
- Asp.Net
- ASP.NET MVC
- AVR
- Bootstrap
- CCNA
- CCNP
- CMD
- CSS
- Dreameaver
- EntityFramework
- Go
- HTML
- IOS
- jquery
- Linq
- Mysql
- Oracle
- PHP
- PHPMyAdmin
- Rational Rose
- silver light
- SQL Server
- Stimulsoft Reports
- Telerik
- UML
- VB.NET&VB6
- WPF
- Xml
- آموزش های پروژه محور
- اتوکد
- الگوریتم تقریبی
- امنیت
- اندروید
- اندروید استودیو
- بک ترک
- بیسیک فور اندروید
- پایتون
- جاوا
- جاوا اسکریپت
- جوملا
- دلفی
- دوره های رایگان پیشنهادی
- زامارین
- سئو
- ساخت CMS
- سی شارپ
- شبکه و مجازی سازی
- طراحی الگوریتم
- طراحی بازی
- طراحی وب
- فتوشاپ
- فریم ورک codeigniter
- فلاتر
- کانستراکت
- کریستال ریپورت
- لاراول
- معماری کامپیوتر
- مهندسی اینترنت
- هوش مصنوعی
- یونیتی
- کتاب های آموزشی
- Android
- ASP.NET
- AVR
- LINQ
- php
- Workflow
- اچ تی ام ال
- بانک اطلاعاتی
- برنامه نویسی سوکت
- برنامه نویسی موبایل
- پاسکال
- پایان نامه
- پایتون
- جاوا
- جاوا اسکریپت
- جی کوئری
- داده کاوی
- دلفی
- رباتیک
- سئو
- سایر کتاب ها
- سخت افزار
- سی اس اس
- سی پلاس پلاس
- سی شارپ
- طراحی الگوریتم
- فتوشاپ
- مقاله
- مهندسی نرم افزار
- هک و امنیت
- هوش مصنوعی
- ویژوال بیسیک
- نرم افزار و ابزار برنامه نویسی
- وردپرس