Subversion Repositories SmartDukaan

Rev

Rev 24383 | Rev 24439 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.repository.cs;

import java.util.List;
import java.util.Map;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.model.CustomRetailer;
import com.spice.profitmandi.dao.entity.auth.AuthUser;
import com.spice.profitmandi.dao.entity.cs.Activity;
import com.spice.profitmandi.dao.entity.cs.Ticket;
import com.spice.profitmandi.dao.entity.cs.TicketSubCategory;

@Service
public interface CsService {
        //Sends happy code to customer
        void addActivity(int ticketId, Activity activity);
        void createTicket(int fofoId,int categoryId, int subcategoryId, String message);
        public void addPartnerToRegion(int regionId, List<Integer> fofoIds) ;
        public Map<Integer,TicketSubCategory> getSubCategoryIdAndSubCategoryMap(List<Ticket> tickets);
        public Map<Integer,AuthUser> getAuthUserIdAndAuthUserMap(List<Ticket> tickets);
        public Map<Integer,CustomRetailer> getPartnerByFofoIds(List<Ticket> tickets);
        }
;