public IHttpActionResult Get(int id)
        {
            try
            {
                var expenseGroupStatus = _repository.GetExpenseGroupStatus(id);

                if (expenseGroupStatus == null)
                {
                    return(NotFound());
                }

                return(Ok(expenseGroupStatus));
            } catch (Exception e)
            {
                return(InternalServerError(e));
            }
        }