Subversion Repositories Integrator Subversion

Rev

Rev 760 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 760 Rev 761
Line 2... Line 2...
2
2
3
import java.time.LocalDateTime;
3
import java.time.LocalDateTime;
-
 
4
import java.util.List;
4
5
5
import br.com.ec.core.generic.GenericService;
6
import br.com.ec.core.generic.GenericService;
6
import br.com.sl.domain.dto.robo.CandleState;
7
import br.com.sl.domain.dto.robo.CandleState;
7
import br.com.sl.domain.model.Candle;
8
import br.com.sl.domain.model.Candle;
8
9
9
public interface CandleService extends GenericService<Candle> {
10
public interface CandleService extends GenericService<Candle> {
10
11
11
        void cadastrar(String ativo, LocalDateTime inicioCandle, LocalDateTime fimCandle, CandleState situacaoCandle);
12
        void cadastrar(String ativo, LocalDateTime inicioCandle, LocalDateTime fimCandle, CandleState situacaoCandle);
-
 
13
-
 
14
        List<Candle> consultarAtivosComCandleEncerradoAte(LocalDateTime fimUltimoCandle);
12
       
15
       
13
}
16
}