public IHttpActionResult GetFeeIntervalByMonth(string month)
        {
            var response = _service.GetFeeIntervalByMonth(month);

            return(Ok(response));
        }
Example #2
0
 /// <summary>
 /// 根据传入月份 返回护理险月份信息
 /// </summary>
 /// <param name="month">月份</param>
 /// <returns>月份信息</returns>
 public static LTC_NCIFinancialMonth GetFeeIntervalByMonth(string month)
 {
     return(dicSvc.GetFeeIntervalByMonth(month));
 }