Subversion Repositories SmartDukaan

Rev

Rev 33525 | Rev 33578 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33525 Rev 33577
Line 16... Line 16...
16
 
16
 
17
@Service
17
@Service
18
public interface LoiFormService {
18
public interface LoiFormService {
19
    LoiForm updateLoiForm(LoiFormData pofd, int formId) throws ProfitMandiBusinessException;
19
    LoiForm updateLoiForm(LoiFormData pofd, int formId) throws ProfitMandiBusinessException;
20
 
20
 
21
    boolean createLoiForm(LoiFormData LoiFormFormData) throws Exception;
21
    boolean createLoiForm(LoiFormData LoiFormFormData, String filledBy) throws Exception;
22
 
22
 
23
    List<AuthUser> getSalesAuthList();
23
    List<AuthUser> getSalesAuthList();
24
 
24
 
25
    List<AuthUser> techAuthUsers();
25
    List<AuthUser> techAuthUsers();
26
 
26
 
27
    List<LoiFormModel> pendingFormList(String emailId) throws ProfitMandiBusinessException;
27
    List<LoiFormModel> pendingFormList(String loginAuthEmail) throws ProfitMandiBusinessException;
28
 
28
 
29
    List<GstAddressModel> createAddressModelList(List<GstDetails.Pradr> adadr);
29
    List<GstAddressModel> createAddressModelList(List<GstDetails.Pradr> adadr);
30
 
30
 
31
    LoiFormModel getmodelbyId(int id) throws ProfitMandiBusinessException;
31
    LoiFormModel getLoiFormModelbyId(int id) throws ProfitMandiBusinessException;
32
 
32
 
33
    void sendSignedLoiPdfToPartner(LoiForm pod1) throws Exception;
33
    void sendSignedLoiPdfToPartner(LoiForm pod1) throws Exception;
34
 
34
 
35
    void setDocs(LoiForm pod, List<LoiDocModel> partnerDocuments) throws Exception;
35
    void setDocs(LoiForm pod, List<LoiDocModel> partnerDocuments) throws Exception;
36
 
36