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
| shipmentDetailsID bigint | |
| shipmentID bigint | |
| shipmentDate datetime | |
| shipmentEstimatedArrivalDate datetime | |
| shipmentArrivalDate datetime | |
| shipmentMethod nvarchar(MAX) | |
| numberOfProducts bigint |
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
| shipmentID bigint | |
| countryID bigint | |
| shipmentCity nvarchar(MAX) | |
| shipmentProvince nvarchar(MAX) |
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
| countryID bigint | |
| countryName nvarchar(MAX) | |
| countryAbbreviation nvarchar(MAX) | |
| countryFlag nvarchar(MAX) |
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
| supplierID bigint | |
| supplierName nvarchar(MAX) | |
| countryID bigint | |
| supplierProvince nvarchar(MAX) | |
| supplierCity nvarchar(MAX) | |
| supplierPostalCode nvarchar(50) | |
| supplierTelephone nvarchar(MAX) | |
| supplierFax nvarchar(MAX) | |
| supplierEmail nvarchar(MAX) | |
| supplierStreet nvarchar(MAX) |
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 ActionResult CopyProduct(FormCollection s_formCollection) | |
| { | |
| var ModelToReturn = TempData["currModel"]; | |
| var prodId = Convert.ToInt32(s_formCollection["hprodid"]); | |
| var UpdateContext = new EntityFramework.WH01Entities(); | |
| var quwry = from pdet in UpdateContext.PRODUCT_DESCRIPTION | |
| where pdet.productID == prodId | |
| select pdet; |
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
| [HttpPost] | |
| public ActionResult Search(FormCollection w_formCollection) | |
| { | |
| string searchTerm = w_formCollection["searchDialog"].ToString(); | |
| string byProduct = w_formCollection["cbProduct"] == null ? "off" : "on"; | |
| string byShipment = w_formCollection["cbShipment"] == null ? "off" : "on"; | |
| string gView = w_formCollection["cbGridview"] == null ? "off" : "on"; | |
| SearchProductModelList spml = new SearchProductModelList(); |
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
| USE [WH01] | |
| GO | |
| /****** Object: Table [dbo].[COUNTRY] Script Date: 2017-02-05 16:51:04 ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| CREATE TABLE [dbo].[COUNTRY]( | |
| [countryID] [bigint] IDENTITY(1,10) NOT NULL, | |
| [countryName] [nvarchar](max) NOT NULL, |
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
| <a target="myIframeInClassicASPPage" href="http://10.10.10.10:9988/api/values/<%=Response.Write(Server.URLEncode(Session("UserName")))%>/<%=Response.Write(698757 * Server.URLEncode(Session("product_id")))%>" >Click Here</a> |
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 Get(string u, string p) | |
| { | |
| Uri referrer = HttpContext.Current.Request.UrlReferrer; | |
| dynamic myModel = new Models.MyModel(); | |
| CirculationMonitor.Controllers.HomeController hc = new HomeController(); | |
| string sd = DateTime.Now.ToShortDateString(); | |
| string ed = DateTime.Now.ToShortDateString(); | |
| var response = new HttpResponseMessage(HttpStatusCode.OK); | |
| if (referrer != null) |