|
|
@ -99,7 +99,7 @@ namespace Myshipping.Application
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_bookingTruckRepository.Insert(entity);
|
|
|
|
_bookingTruckRepository.Insert(entity);
|
|
|
|
|
|
|
|
|
|
|
|
if (entityCtnList.Count > 0)
|
|
|
|
if (entityCtnList != null && entityCtnList.Count > 0)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
entityCtnList.ForEach(async ctn =>
|
|
|
|
entityCtnList.ForEach(async ctn =>
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -124,7 +124,7 @@ namespace Myshipping.Application
|
|
|
|
it.TruckCode,
|
|
|
|
it.TruckCode,
|
|
|
|
}).ExecuteCommandAsync();
|
|
|
|
}).ExecuteCommandAsync();
|
|
|
|
|
|
|
|
|
|
|
|
if (entityCtnList.Count > 0)
|
|
|
|
if (entityCtnList != null && entityCtnList.Count > 0)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
entityCtnList.ForEach(async ctn =>
|
|
|
|
entityCtnList.ForEach(async ctn =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|