Esempio n. 1
0
        /// <summary>
        /// Search Service Type
        /// </summary>
        public ServiceTypeSearchRequestResponse SearchServiceType(ServiceTypeSearchRequest request)
        {
            int rowCount;

            return(new ServiceTypeSearchRequestResponse
            {
                ServiceTypes = serviceTypeRepository.SearchServiceType(request, out rowCount),
                TotalCount = rowCount
            });
        }