Esempio n. 1
0
        /// <summary>
        /// Returns details of the history operation.
        /// </summary>
        /// <param name="id">Identifier of the history operation.</param>
        /// <returns>Details of the history operation.</returns>
        public HistoryOperationModel GetDetails(string id)
        {
            var result = _service.GetDetailsById(id);

            return(Convert <HistoryOperationModel>(result));
        }