public async Task <IActionResult> BulkAddQuotationAsync([FromBody] List <Quotation> quotation)
        {
            try
            {
                _logger.LogDebug("Bulk inserting quoatations");
                bool success = await _quotationService.BulkAddAsync(quotation);

                if (success)
                {
                    _logger.LogDebug("Quotation bulk insert operation success.");
                    return(Ok("Quotation Bulk Add successfully"));
                }
                else
                {
                    _logger.LogDebug("Quotation bulk insert operation failed. Duplicate quotations found");
                    return(Conflict("Duplicate Quotation"));
                }
            }
            catch (Exception ex)
            {
                //log
                _logger.LogError("An Exception occured: {ex}", ex.Message);
                _logger.LogError("Stack Trace: {ex}", ex.StackTrace);
                return(BadRequest());
            }
        }