This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public async Task<double> CalculateShippingSubtotalAsync(int productID, string postalCode) | |
| { | |
| var productServiceProxy = new ProductServiceClient(); | |
| var shippingServiceProxy = new ShippingServiceClient(); | |
| var t = productServiceProxy.GetProductByIDAsync(productID); | |
| var t2 = shippingServiceProxy.GetShippingCostForPostalCodeAsync(postalCode); | |
| await Task.WhenAll(t, t2); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public HttpResponseMessage<IEnumerable<Bug>> Post(JsonObject formData) { | |
| dynamic data = formData.AsDynamic(); | |
| var bug = new Bug | |
| { | |
| Name = data.name, | |
| Priority = data.priority, | |
| Rank = data.rank, | |
| }; | |
| _bugRepository.Add(bug); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| protected void Application_Start() | |
| { | |
| //... | |
| Bundle cssBundle = new Bundle("~/Content/css", new LessTransform().Then(new CssMinify())); | |
| cssBundle.AddFile("~/Content/site.css", throwIfNotExist: false); | |
| cssBundle.AddDirectory("~/Content/", "jquery.mobile*", searchSubdirectories: false, throwIfNotExist: false); | |
| BundleTable.Bundles.Add(cssBundle); | |
| //... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bundle = new Bundle("~/Content/themes/base/css", csstransformer); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.core.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.resizable.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.selectable.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.accordion.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.autocomplete.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.button.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.dialog.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.slider.css", true); | |
| bundle.AddFile("~/Content/themes/base/jquery.ui.tabs.css", true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bundles.Add(new StyleBundle("~/Content/themes/base/css").Include( | |
| "~/Content/themes/base/jquery.ui.core.css", | |
| "~/Content/themes/base/jquery.ui.resizable.css", | |
| "~/Content/themes/base/jquery.ui.selectable.css", | |
| "~/Content/themes/base/jquery.ui.accordion.css", | |
| "~/Content/themes/base/jquery.ui.autocomplete.css", | |
| "~/Content/themes/base/jquery.ui.button.css", | |
| "~/Content/themes/base/jquery.ui.dialog.css", | |
| "~/Content/themes/base/jquery.ui.slider.css", | |
| "~/Content/themes/base/jquery.ui.tabs.css", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class LessTransform : IBundleTransform | |
| { | |
| public void Process(BundleContext context, BundleResponse response) | |
| { | |
| response.Content = dotless.Core.Less.Parse(response.Content); | |
| response.ContentType = "text/css"; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var lessBundle = new Bundle("~/My/Less").IncludeDirectory("~/My", "*.less"); | |
| lessBundle.Transforms.Add(new LessTransform()); | |
| lessBundle.Transforms.Add(new CssMinify()); | |
| bundles.Add(lessBundle); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app.post('/bugs/working', function(req, res){ | |
| db.bugs.find({_id:req.body.id}, function(err, doc){ | |
| doc.activate(req.body.comments); | |
| db.bugs.update({_id:req.body.id}, doc, function(err, updatedDoc){ | |
| db.bugs.find({status:'Working'}, function(err, docs){ | |
| res.render('bugs-all.html', { | |
| title: "Working", | |
| model: { bugs : docs }}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Bug(title, description) { | |
| var self = this; | |
| this.title = title; | |
| this.description = description; | |
| this.assignedTo = ''; | |
| this.status = ''; | |
| this.history = []; | |
| function addToHistory(comments, stateChanges){ | |
| self.history.push({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "Make":"Ford", | |
| "Model":"Taurus", | |
| "Vin":"1234", | |
| "Forms" : [ | |
| { | |
| "Uri":"...", | |
| "Rel":"reservation", | |
| "Mode":"POST", |