Commit eb3450d2 authored by Noel Alonso's avatar Noel Alonso
Browse files

Reubica dto's para agrupar por funcionalidad

Actualiza referencias
parent 48aa905b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ import es.redmic.vesselscommands.commands.vessel.CreateVesselCommand;
import es.redmic.vesselscommands.commands.vessel.DeleteVesselCommand;
import es.redmic.vesselscommands.commands.vessel.UpdateVesselCommand;
import es.redmic.vesselscommands.statestore.VesselStateStore;
import es.redmic.vesselslib.dto.VesselDTO;
import es.redmic.vesselslib.dto.vessel.VesselDTO;
import es.redmic.vesselslib.events.vessel.VesselEventTypes;
import es.redmic.vesselslib.events.vessel.common.VesselEvent;
import es.redmic.vesselslib.events.vessel.create.CreateVesselCancelledEvent;
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ import es.redmic.vesselscommands.commands.vesseltype.CreateVesselTypeCommand;
import es.redmic.vesselscommands.commands.vesseltype.DeleteVesselTypeCommand;
import es.redmic.vesselscommands.commands.vesseltype.UpdateVesselTypeCommand;
import es.redmic.vesselscommands.statestore.VesselTypeStateStore;
import es.redmic.vesselslib.dto.VesselTypeDTO;
import es.redmic.vesselslib.dto.vesseltype.VesselTypeDTO;
import es.redmic.vesselslib.events.vesseltype.VesselTypeEventTypes;
import es.redmic.vesselslib.events.vesseltype.common.VesselTypeEvent;
import es.redmic.vesselslib.events.vesseltype.create.CreateVesselTypeCancelledEvent;
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ import org.joda.time.DateTime;

import es.redmic.commandslib.commands.Command;
import es.redmic.exception.databinding.FieldNotValidException;
import es.redmic.vesselslib.dto.VesselDTO;
import es.redmic.vesselslib.dto.vessel.VesselDTO;

public class CreateVesselCommand extends Command {

+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ package es.redmic.vesselscommands.commands.vessel;
import org.joda.time.DateTime;

import es.redmic.commandslib.commands.Command;
import es.redmic.vesselslib.dto.VesselDTO;
import es.redmic.vesselslib.dto.vessel.VesselDTO;

public class UpdateVesselCommand extends Command {

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ package es.redmic.vesselscommands.commands.vesseltype;

import es.redmic.commandslib.commands.Command;
import es.redmic.exception.databinding.FieldNotValidException;
import es.redmic.vesselslib.dto.VesselTypeDTO;
import es.redmic.vesselslib.dto.vesseltype.VesselTypeDTO;

public class CreateVesselTypeCommand extends Command {

Loading