Пример #1
0
        public JsonResult GetAdjustments(string LeagueName)
        {
            AdjustmentsBO        oAdjustmentsBO  = new AdjustmentsBO();
            List <AdjustmentDTO> ocAdjustmentDTO = oAdjustmentsBO.GetTodaysAdjustments(LeagueName);

            return(Json(ocAdjustmentDTO, JsonRequestBehavior.AllowGet));
        }
Пример #2
0
        public JsonResult PostInsertAdjustment(AdjustmentDTO oAdjustmentDTO)
        {
            AdjustmentsBO oAdjustmentsBO = new AdjustmentsBO();

            //  List<AdjustmentDTO> ocAdjustmentDTO = oAdjustmentsBO.GetTodaysAdjustments(LeagueName);

            return(Json(oAdjustmentsBO, JsonRequestBehavior.AllowGet));
        }