public ProductOrderDtlDTO GetProductOrderDtlById(int productOrderDtlId)
        {
            var productOrderDtl = unitOfWork.ProductOrderDtlRepository.GetById(productOrderDtlId);
            ProductOrderDtlDTO productOrderDtlDTO = ProductOrderDtlDTOConvertor.ConvertToProductOrderDtlDto(productOrderDtl);

            return(productOrderDtlDTO);
        }
        public List <ProductOrderDtlDTO> GetAllProductOrderDtl()
        {
            var productOrderDtlList = unitOfWork.ProductOrderDtlRepository.GetAll();
            List <ProductOrderDtlDTO> productOrderDtlDTOList = new List <ProductOrderDtlDTO>();

            foreach (ProductOrderDetail productOrderDetail in productOrderDtlList)
            {
                if (productOrderDetail.ProductOrder.InActive == false || productOrderDetail.ProductOrder.InActive == null)
                {
                    productOrderDtlDTOList.Add(ProductOrderDtlDTOConvertor.ConvertToProductOrderDtlDto(productOrderDetail));
                }
            }
            return(productOrderDtlDTOList);
        }