/// <summary>
 /// Handler which processes the command when
 /// customer executes cancel order from app
 /// </summary>
 /// <param name="command"></param>
 /// <returns></returns>
 public Task <bool> Handle(CreateVehicleBulkCmd command, CancellationToken cancellationToken)
 {
     return(_Repository.AddVehicles(GetVehicles(command)));
 }