DomainDrivenDelivery.Reporting.Api.Handling.setLocation C# (CSharp) Method

setLocation() public method

public setLocation ( string location ) : void
location string
return void
        public void setLocation(string location)
        {
            this.location = location;
        }

Usage Example

Example #1
0
 private Handling assembleFrom(HandlingEvent handlingEvent)
 {
     Handling handling = new Handling();
     handling.setLocation(handlingEvent.Location.Name);
     handling.setType(handlingEvent.Activity.Type.ToString());
     handling.setVoyage(handlingEvent.Voyage.VoyageNumber.Value);
     return handling;
 }
All Usage Examples Of DomainDrivenDelivery.Reporting.Api.Handling::setLocation