Endjin.TeamCityDemo.Tasks.MyTask.DoSomething C# (CSharp) Method

DoSomething() public method

public DoSomething ( IMyBehaviour behaviour ) : void
behaviour IMyBehaviour
return void
        public void DoSomething(IMyBehaviour behaviour)
        {
            Utility.DoSomething(behaviour);
        }

Usage Example

Exemplo n.º 1
0
        public ActionResult Index()
        {
            var domainObject = new MyDomainObject();
            var task = new MyTask();

            task.DoSomething(domainObject);

            return View();
        }
All Usage Examples Of Endjin.TeamCityDemo.Tasks.MyTask::DoSomething