Endjin.TeamCityDemo.Tasks.MyTask.DoSomething C# (CSharp) 메소드

DoSomething() 공개 메소드

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

Usage Example

예제 #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