// TODO breeze doesn't support this at the moment / coni2k - 31 Jul. '17
        // [ConcurrencyValidator(typeof(UserElementCell))]
        public async Task <IHttpActionResult> Delete(int userId, int elementCellId)
        {
            // Owner check: Entity must belong to the current user
            var currentUserId = User.Identity.GetUserId <int>();

            if (currentUserId != userId)
            {
                return(StatusCode(HttpStatusCode.Forbidden));
            }

            await _resourcePoolManager.DeleteUserElementCellAsync(userId, elementCellId);

            return(StatusCode(HttpStatusCode.NoContent));
        }