private IEnumerable <EstadoServicioDtoModel> GetServiceStatusDtoModel()
        {
            var serviceStatusList = _commonDataRepository.GetServiceStatus().ToList();
            var statusDtoList     = new List <EstadoServicioDtoModel>();

            serviceStatusList.ForEach(cp => statusDtoList.Add(new EstadoServicioDtoModel
            {
                Id     = cp.Id,
                Estado = cp.Estado
            }));
            return(statusDtoList);
        }