public ActionResult <IEnumerable <OrganizationDTO> > Post([FromBody] OrganizationAddDTO organization)
        {
            try
            {
                if (!ModelState.IsValid)
                {
                    throw new Exception("Fail on model validation");
                }

                _app.Add(organization);
                return(_app.SelectAll());
            }
            catch (Exception ex)
            {
                _err.Add(ex, HttpContext.User.Identity.Name);
                return(BadRequest(ex.Message));
            }
        }
 public void Add(OrganizationAddDTO entity)
 {
     _repo.Add(_mapper.Map <Organization>(entity));
 }