public string IdentifyTag(Guid tagId, Guid personId)
        {
            IFaceService faceService = new FaceService();

            faceService.IdentifyTagAsync(tagId, personId);

            return("OK");
        }