public async Task <IActionResult> Post([FromBody] OrganizationViewModel theOrganization)
        {
            if (ModelState.IsValid)
            {
                //Save to the Database
                var newOrganization = Mapper.Map <Organization>(theOrganization);

                _repository.AddOrganization(newOrganization);

                if (await _repository.SaveChangesAsync())
                {
                    return(Created($"api/organizations/{theOrganization.Name}", Mapper.Map <OrganizationViewModel>(newOrganization)));
                }
            }

            return(BadRequest("Failed to save changes to the database"));
        }