Esempio n. 1
0
    public List<MakeCountInfo> GetMakeCounts(string AuthenticationID, string CustomerID)
    {
        var obj = new List<MakeCountInfo>();

        MakesBL objMakesBL = new MakesBL();

        MobileBL objMobileBL = new MobileBL();
        if (CustomerID.Trim() != "")
        {
            DataSet dsSaveCustInfo = objMobileBL.SaveMobileCustomerInfo("GetMakes", CustomerID, AuthenticationID,"AllMakes");
        }
        if (AuthenticationID == ConfigurationManager.AppSettings["AppleID"].ToString())
        {
            obj = (List<MakeCountInfo>)objMobileBL.GetMakeCounts();

        }
        return obj;
    }