Ejemplo n.º 1
0
        public JsonResult GetMonths(int YearId)
        {
            CCIRepository         _repository = CCIRepository.CreateRepository();
            List <MonthListClass> list        = new List <MonthListClass>();

            list = _repository.GetMonthFromImportDate(YearId);
            return(Json(list));
        }