public List <MultiSelectList> GetBPSOffering(string unitId)
 {
     try
     {
         List <MultiSelectList> bpsOfferingList = new List <MultiSelectList>();
         if (!CheckForNull.IsNullOrEmpty(unitId))
         {
             bpsOfferingList = new CreateNewOpportunity().GetBPSOffering(unitId);
         }
         return(bpsOfferingList);
     }
     catch (InvalidOperationException ex)
     {
         throw new ExceptionHandler(ex);
     }
 }
 public List <OppVertical> GetVerticalName(string unitId)
 {
     try
     {
         List <OppVertical> verticalList = new List <OppVertical>();
         if (!CheckForNull.IsNullOrEmpty(unitId))
         {
             verticalList = new CreateNewOpportunity().GetVertical(unitId);
         }
         return(verticalList);
     }
     catch (InvalidOperationException ex)
     {
         throw new ExceptionHandler(ex);
     }
 }
 public List <VerticalHorizontal> GetServiceName(string unitId)
 {
     try
     {
         List <VerticalHorizontal> ServiceNameList = new List <VerticalHorizontal>();
         if (!CheckForNull.IsNullOrEmpty(unitId))
         {
             ServiceNameList = new NewOpportunity().GetServiceName(unitId);
         }
         return(ServiceNameList);
     }
     catch (InvalidOperationException ex)
     {
         throw new ExceptionHandler(ex);
     }
 }
        public List <NextStepHistory> Get_Status_Update(string opportunityId, int stageId)
        {
            try
            {
                List <NextStepHistory> ObjOpportunityUnitID = new List <NextStepHistory>();
                if (!CheckForNull.IsNullOrEmpty(opportunityId) && stageId != 0)
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Status_Update(opportunityId, stageId);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
        public List <OpportunityUnitID> GET_VERTICAL_OPP_DATA(string strOppId)
        {
            try
            {
                List <OpportunityUnitID> ObjOpportunityUnitID = new List <OpportunityUnitID>();
                if (!CheckForNull.IsNullOrEmpty(strOppId))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Vertical_Opp_Data(strOppId);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
        public List <MultiSelectList> Get_Opp_Win_Loss_Reason(string OppID)
        {
            try
            {
                List <MultiSelectList> ObjOpportunityUnitID = new List <MultiSelectList>();
                if (!CheckForNull.IsNullOrEmpty(OppID))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Opp_Win_Loss_Reason(OppID);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
        public List <OpportunityUnitID> Get_Level1_Vertical(string vertical)
        {
            try
            {
                List <OpportunityUnitID> ObjOpportunityUnitID = new List <OpportunityUnitID>();
                if (!CheckForNull.IsNullOrEmpty(vertical))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Level1_Vertical(vertical);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
        public List <OpportunityUnitID> Get_Business_Domain(string unitId)
        {
            try
            {
                List <OpportunityUnitID> ObjOpportunityUnitID = new List <OpportunityUnitID>();
                if (!CheckForNull.IsNullOrEmpty(unitId))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Business_Domain(unitId);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
        public int Delete_VerticalOppdate(CreateNewOpportunity objvertical)
        {
            try
            {
                int result = 0;
                if (!CheckForNull.IsNull(objvertical))
                {
                    result = new CreateNewOpportunity().Delete_VerticalOppdate(objvertical);
                }
                return(result);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
Beispiel #10
0
        public List <Services> Get_Level1_Services(string service)
        {
            try
            {
                List <Services> ObjOpportunityUnitID = new List <Services>();
                if (!CheckForNull.IsNullOrEmpty(service))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Level1_Services(service);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
Beispiel #11
0
        public List <OpportunityUnitID> Get_Service_Opp_Date(string strOppId)
        {
            try
            {
                List <OpportunityUnitID> ObjOpportunityUnitID = new List <OpportunityUnitID>();
                if (!CheckForNull.IsNullOrEmpty(strOppId))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_Service_Opp_Date(strOppId);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
Beispiel #12
0
        public List <OppDetails> Get_TCV_CRM(string OppID)
        {
            try
            {
                List <OppDetails> ObjOpportunityUnitID = new List <OppDetails>();
                if (!CheckForNull.IsNullOrEmpty(OppID))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().Get_TCV_CRM(OppID);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
Beispiel #13
0
        public List <CreateNewOpportunity> GetDel_TM_Dtls(string strOppID)
        {
            try
            {
                List <CreateNewOpportunity> ObjOpportunityUnitID = new List <CreateNewOpportunity>();
                if (!CheckForNull.IsNullOrEmpty(strOppID))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().GetDel_TM_Dtls(strOppID);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }
Beispiel #14
0
        public List <OppStage> GetOpportunityChkCRM(string strOpportunityID)
        {
            try
            {
                List <OppStage> ObjOpportunityUnitID = new List <OppStage>();
                if (!CheckForNull.IsNullOrEmpty(strOpportunityID))
                {
                    ObjOpportunityUnitID = new CreateNewOpportunity().GetOpportunityChkCRM(strOpportunityID);
                }
                return(ObjOpportunityUnitID);
            }

            catch (InvalidOperationException ex)
            {
                throw new ExceptionHandler(ex);
            }
        }