public void Put(Guid id, [FromBody] UpdateDashboardModel dashboard)
        {
            var entity = _repository.GetById(id);

            entity.Update(dashboard.Date, dashboard.Type);
            _repository.Edit(entity);
        }