public async Task <ProductType> Delete(ProductType ProductType)
        {
            if (!await ProductTypeValidator.Delete(ProductType))
            {
                return(ProductType);
            }

            try
            {
                await UOW.Begin();

                await UOW.ProductTypeRepository.Delete(ProductType);

                await UOW.Commit();

                await UOW.AuditLogRepository.Create("", ProductType, nameof(ProductTypeService));

                return(ProductType);
            }
            catch (Exception ex)
            {
                await UOW.Rollback();

                await UOW.SystemLogRepository.Create(ex, nameof(ProductTypeService));

                throw new MessageException(ex);
            }
        }