예제 #1
0
        public ActionResult Create()
        {
            CoolQueryModel model = new CoolQueryModel();

            model = PrepareCoolQueryModel(model, new CoolQuery(), true, true);
            return(View(model));
        }
예제 #2
0
        public CoolQueryModel PrepareCoolQueryModel(CoolQueryModel model, CoolQuery coolQuery, bool fillAvailableCompanies = false, bool fillAvailableDirections = false)
        {
            model.Id                 = coolQuery.Id;
            model.CompanyId          = coolQuery.CoolComId;
            model.Description        = coolQuery.Description;
            model.QueryCode          = coolQuery.QueryCode;
            model.CoolQueryDirection = coolQuery.CoolQueryDirection;
            model.Query              = coolQuery.Query;
            model.CreatedDate        = coolQuery.CreatedDate;

            if (fillAvailableCompanies)
            {
                model.AvailableCompanies = _coolComService.GetAll().Select(k => new SelectListItem {
                    Text = k.Id, Value = k.Id
                }).ToList();
            }

            if (fillAvailableDirections)
            {
                model.AvailableDirections = Enum.GetValues(typeof(CoolQueryDirection)).Cast <CoolQueryDirection>().Select(v => new SelectListItem
                {
                    Text  = v.ToString(),
                    Value = ((int)v).ToString()
                }).ToList();
            }

            return(model);
        }
예제 #3
0
        public ActionResult Edit(CoolQueryModel model)
        {
            var coolQuery = _coolQueryService.GetById(model.Id);

            if (coolQuery == null)
            {
                model.Errors.Add(_languageService.GetLocaleString("CoolQuery not found"));
                return(Json(model));
            }

            if (ModelState.IsValid)
            {
                coolQuery.CoolComId          = model.CompanyId;
                coolQuery.Description        = model.Description;
                coolQuery.QueryCode          = model.QueryCode;
                coolQuery.Query              = model.Query;
                coolQuery.CoolQueryDirection = model.CoolQueryDirection;

                _coolQueryService.Update(coolQuery);
                model.SuccessMessage = _languageService.GetLocaleString("CoolQuery Updated");
            }
            else
            {
                model.Errors.Add("Check fields for editing");
            }

            //model = PrepareCoolQueryModel(model, coolCom);


            return(Json(model));
        }
예제 #4
0
        public CoolQueryListModel PrepareCoolQueryListModel(CoolQueryListModel model, List <CoolQuery> coolQuery)
        {
            foreach (var c in coolQuery)
            {
                CoolQueryModel cqm = new CoolQueryModel();
                cqm = PrepareCoolQueryModel(cqm, c);
                model.Items.Add(cqm);
            }

            return(model);
        }
예제 #5
0
        public ActionResult Edit(string Id)
        {
            CoolQueryModel model     = new CoolQueryModel();
            var            coolQuery = _coolQueryService.GetById(Id);

            if (coolQuery == null)
            {
                model.Errors.Add(_languageService.GetLocaleString("CoolQuery not found"));
                return(View(model));
            }
            model = PrepareCoolQueryModel(model, coolQuery, true, true);
            return(View(model));
        }
예제 #6
0
        public ActionResult Delete(string Id)
        {
            CoolQueryModel model   = new CoolQueryModel();
            var            coolCom = _coolQueryService.GetById(Id);

            if (coolCom != null)
            {
                _coolComService.Delete(Id);
            }
            else
            {
                model.Errors.Add(_languageService.GetLocaleString("CoolCom Couldn't found"));
            }

            model.SuccessMessage = _languageService.GetLocaleString("CoolCom Deleted successfully");
            return(Json(model));
        }
예제 #7
0
        public ActionResult Create(CoolQueryModel model)
        {
            CoolQuery coolQuery = _coolQueryService.GetById(model.Id);

            if (coolQuery != null)
            {
                model.Errors.Add(_languageService.GetLocaleString("CoolQuery Already Exists"));
                return(Json(model));
            }

            if (ModelState.IsValid)
            {
                coolQuery                    = new CoolQuery();
                coolQuery.CoolComId          = model.CompanyId;
                coolQuery.Description        = model.Description;
                coolQuery.QueryCode          = model.QueryCode;
                coolQuery.CoolQueryDirection = model.CoolQueryDirection;
                coolQuery.Query              = model.Query;
                _coolQueryService.Insert(coolQuery);
                model.SuccessMessage = _languageService.GetLocaleString("CoolQuery Created");
            }

            return(Json(model));
        }