internal static async Task <ResponseBase <List <LoadDashboard> > > GetAllWidgetAsync(TeamHttpContext teamHttpContext)
        {
            if (teamHttpContext == null)
            {
                throw new ArgumentNullException(nameof(teamHttpContext));
            }
            //DataRequest dataRequest = new DataRequest(year, month, 0, 0);
            List <LoadDashboard> Widgets = await GenericService.GetAllWidgetAsync(teamHttpContext).ConfigureAwait(false);

            return(GetTypedResponse(teamHttpContext, Widgets));
        }