Exemplo n.º 1
0
        public IActionResult AddFeature()
        {
            var types = this.featureTypeService.GetAll <FeatureTypeInputViewModel>().ToList();

            types.Add(new FeatureTypeInputViewModel {
                Id = 999999999, Name = "Other"
            });
            var viewModel = new AddFeatureViewModel()
            {
                Types = types,
            };

            return(this.View(viewModel));
        }
Exemplo n.º 2
0
        public async Task <IActionResult> AddFeature(AddFeatureViewModel input)
        {
            if (!this.ModelState.IsValid)
            {
                var types = this.featureTypeService.GetAll <FeatureTypeInputViewModel>().ToList();
                types.Add(new FeatureTypeInputViewModel {
                    Id = 999999999, Name = "Other"
                });
                input.Types = types;
                return(this.View(input));
            }

            var inputTypeName    = input.Type;
            var inputFeatureName = input.Feature;
            var isTypeId         = int.TryParse(inputTypeName, out int typeId);

            if (isTypeId)
            {
                await this.featureService.AddAsync(inputFeatureName, typeId);
            }
            else
            {
                if (this.featureTypeService.IsHasTypeName(inputTypeName)) //if user is selected "other", but he entered existing makeName
                {
                    var type = this.featureTypeService.GetByName <FeatureTypeInputViewModel>(inputTypeName);
                    await this.featureService.AddAsync(inputFeatureName, type.Id);
                }
                else
                {
                    var newTypeId = await this.featureTypeService.AddAsync(inputTypeName);

                    await this.featureService.AddAsync(inputFeatureName, newTypeId);
                }
            }

            return(this.Redirect("/"));
        }
Exemplo n.º 3
0
 public AddFeatureView()
 {
     InitializeComponent();
     BindingContext = viewModel = new AddFeatureViewModel();
 }