public object GetQuotation(int id)
 {
     return(new
     {
         success = true,
         QuotationMaster = new { Record = _quotationLogic.GetQuotationById(id), TotalRecord = 1 }
     });
 }