Ejemplo n.º 1
0
    /// <summary>
    /// 得到车型信息 三类
    /// </summary>
    /// <param name="CarSystemCode"></param>
    /// <param name="Count"></param>
    /// <param name="olist"></param>
    /// <returns></returns>

    public string GetCarTypeList(int?CarSystemCode, out int Count, out List <CarTypeModel> olist)
    {
        olist = new List <CarTypeModel>();
        Count = 0;
        try
        {
            olist = ctd.GetCarType(CarSystemCode, out Count);
            return(Config.Success);
        }
        catch (Exception ex)
        {
            WriteLog.WriteExceptionLog("Province_City_CarBLL.GetCarTypeList()", ex);
            return(Config.ExceptionMsg);
        }
    }