From 4953b7e4c7a64d5878243a0ca09594bc1688d5d5 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 3 Nov 2016 17:44:20 +0100 Subject: [PATCH] cleaning --- Yavsc/Controllers/FrontOfficeController.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Yavsc/Controllers/FrontOfficeController.cs b/Yavsc/Controllers/FrontOfficeController.cs index 0e0ffea8..68a94843 100644 --- a/Yavsc/Controllers/FrontOfficeController.cs +++ b/Yavsc/Controllers/FrontOfficeController.cs @@ -98,12 +98,9 @@ namespace Yavsc.Controllers .Include(x=>x.Query.PerformerProfile.OrganizationAddress) .Include(x=>x.Query.PerformerProfile.Performer) .Include(e=>e.Bill).FirstOrDefault(x=>x.Id==id); - // var poa = estimate.Query.PerformerProfile.OrganizationAddress; - // var adc = estimate.Query.Client.UserName; ViewBag.From = estimate.Query.PerformerProfile.Performer; ViewBag.To = estimate.Query.Client; Response.ContentType = "text/x-tex"; - // estimate.Query.Client.PostalAddress. return View("Estimate.tex", estimate); } }