Subversion Repositories Integrator Subversion

Rev

Rev 630 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
623 blopes 1
package br.com.ec.domain.service;
2
 
3
import br.com.ec.core.generic.GenericService;
630 blopes 4
import br.com.ec.domain.dto.ComercialPosVendaDTO;
623 blopes 5
import br.com.ec.domain.dto.PosVendaDTO;
6
import br.com.ec.domain.model.PosVenda;
7
 
8
public interface PosVendaService extends GenericService<PosVenda> {
9
 
630 blopes 10
        ComercialPosVendaDTO consultarPosVendaEmAndamento();
11
 
12
        void iniciarAtendimento(PosVendaDTO posVenda);
623 blopes 13
 
636 blopes 14
        void finalizarAtendimento(PosVendaDTO posVenda);
15
 
623 blopes 16
}