public async Task <MainObjectiveView> AddMainObjecitve([FromBody] MainObjectiveRequestView requestView)
        {
            var mainObjective = await _dashboardService.AddMainObjective(
                requestView.mainObjective,
                requestView.categoryId);

            return(mainObjective);
        }