public async Task <IActionResult> Create(List <BusinessAndAchievementCreateModelView> models)
        {
            if (ModelState.IsValid)
            {
                var modelsMapper = _mapper.Map <List <BusinessAndAchievement> >(models);
                int empId        = 0;
                int timeOf       = 0;
                var businesses   = await _repository.GetBusinessAndAchievements();

                int count = businesses.Count() + 1;
                foreach (var model in modelsMapper)
                {
                    model.Id = count;
                    _repository.Add <BusinessAndAchievement>(model);
                    empId  = model.EmployeeId;
                    timeOf = model.TimesOfEvaluationAndPerformanceId;
                    count++;
                }
                await _repository.SavaAll();

                return(RedirectToAction("WorksByEmployee", new { employeeId = empId, timesOfEvaluationAndPerformanceId = timeOf }));
            }
            return(View(models));
        }