public IActionResult Post(EducationCreateViewModel model)
        {
            if (this.ModelState.IsValid)
            {
                Education education = model.ToEducationEntity();
                var       repo      = this.Storage.GetRepository <IEducationRepository>();

                repo.Create(education, GetCurrentUserName());
                this.Storage.Save();

                return(Ok(new { success = true, data = education }));
            }

            return(BadRequest(new { success = false }));
        }