Commit 79c33a2067656038d888f30d07c5a9307ab7a48c

Authored by Nikita Kulshreshtha
2 parents 6092423f 7cf6d0ab

Merge branch 'Develop-IPAD-MAC' of http://52.6.196.163/ADAM/AIAHTML5 into PreQA

deleted unnecessary files
Showing 193 changed files with 216 additions and 235 deletions

Too many changes.

To preserve performance only 100 of 193 files are displayed.

.gitignore
@@ -25,16 +25,14 @@ obj/ @@ -25,16 +25,14 @@ obj/
25 *.sbr 25 *.sbr
26 26
27 AIAHTML5.ADMIN.API/* 27 AIAHTML5.ADMIN.API/*
28 -!AIAHTML5.ADMIN.API/Gloabl.asax  
29 -!AIAHTML5.ADMIN.API/Gloabl.cs 28 +!AIAHTML5.ADMIN.API/Global.asax
  29 +!AIAHTML5.ADMIN.API/Global.cs
30 !AIAHTML5.ADMIN.API/Scripts 30 !AIAHTML5.ADMIN.API/Scripts
31 AIAHTML5.API/* 31 AIAHTML5.API/*
32 -!AIAHTML5.API/Gloabl.asax  
33 -!AIAHTML5.API/Gloabl.cs  
34 -Admin/src/  
35 -Admin/e2e  
36 -Admin/Properties  
37 -Admin/wwwroot 32 +!AIAHTML5.API/Global.asax
  33 +!AIAHTML5.API/Global.cs
  34 +Admin/*
  35 +!Admin/dist
38 36
39 [Rr]elease*/ 37 [Rr]elease*/
40 _ReSharper*/ 38 _ReSharper*/
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_DeleteSubscriptionPlan.sql
1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_DeleteSubscriptionPlan.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_DeleteSubscriptionPlan.sql differ 1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_DeleteSubscriptionPlan.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_DeleteSubscriptionPlan.sql differ
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetEditions.sql 0 → 100644
1 Binary files /dev/null and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetEditions.sql differ 1 Binary files /dev/null and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetEditions.sql differ
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenseById.sql 0 → 100644
  1 +SET QUOTED_IDENTIFIER ON
  2 +GO
  3 +SET ANSI_NULLS ON
  4 +GO
  5 +
  6 +if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[usp_GetLicenseById]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
  7 +drop procedure [dbo].[usp_GetLicenseById]
  8 +GO
  9 +-- ====================================================
  10 +-- Author: Magic Software
  11 +-- Create date: 29-Jan-2018
  12 +-- Description: To get a license information on the basis of LicenseId
  13 +-- ====================================================
  14 +create PROCEDURE [dbo].[usp_GetLicenseById]
  15 + -- Add the parameters for the stored procedure here
  16 + @Id int
  17 +AS
  18 +BEGIN
  19 + -- SET NOCOUNT ON added to prevent extra result sets from
  20 + -- interfering with SELECT statements.
  21 + SET NOCOUNT ON;
  22 +
  23 + declare @SubscriptionStartDate datetime, @SubscriptionEndDate datetime, @NoOfImages int, @TotalAmount money, @RenewalDate datetime,
  24 + @SiteIp varchar(100), @SiteIpTo varchar(100), @SiteMasterIPTo varchar(100);
  25 + declare @UserId int, @Login varchar(100), @Password varchar(100), @SecurityQuestionId int, @Answer varchar(100);
  26 + declare @EditionId int, @TotalLogins int;
  27 + declare @EditionLoginText varchar(1000);
  28 +
  29 + declare CurEditionLogin cursor for
  30 + select EditionId, TotalLogins from LicenseToEdition where LicenseId = @Id;
  31 +
  32 + set @EditionLoginText = '';
  33 + open CurEditionLogin
  34 + fetch NEXT FROM CurEditionLogin into @EditionId, @TotalLogins
  35 + while @@FETCH_STATUS = 0
  36 + begin
  37 + set @EditionLoginText = @EditionLoginText + convert(varchar(5), @EditionId) + '-' + convert(varchar(5), @TotalLogins) + '|';
  38 + fetch NEXT FROM CurEditionLogin into @EditionId, @TotalLogins
  39 + end
  40 + CLOSE CurEditionLogin
  41 + DEALLOCATE CurEditionLogin
  42 + set @EditionLoginText = SUBSTRING(@EditionLoginText, 1, len(@EditionLoginText) - 1);
  43 +
  44 + select top 1
  45 + @SubscriptionStartDate = LSD.SubscriptionValidFrom,
  46 + @SubscriptionEndDate = LSD.SubscriptionValidThrough,
  47 + @RenewalDate = LSD.RenewalDate,
  48 + @NoOfImages = LSD.NoofImages,
  49 + @TotalAmount = LSD.TotalAmount
  50 + from LicenseSubscriptionDetail LSD where LSD.LicenseId = @Id order by LSD.Id desc;
  51 +
  52 + select top 1 @SiteIp = S.SiteIP, @SiteIpTo = S.SiteIPTo, @SiteMasterIPTo = S.SiteMasterIPTo from Site S
  53 + inner join SiteToLicenseEdition SLE ON S.Id = SLE.SiteId
  54 + inner join LicenseToEdition LE on SLE.LicenseEditionId = LE.Id
  55 + where LE.LicenseId = @Id and S.IsMaster = 1 AND S.IsActive = 1 order by SLE.SiteId desc;
  56 +
  57 + select top 1 @UserId = US.Id, @Login = US.LoginId, @Password = US.Password, @SecurityQuestionId = US.SecurityQuestionId,
  58 + @Answer = US.SecurityAnswer from AIAUserToLicenseEdition UL inner join LicenseToEdition LE on UL.LicenseEditionId = LE.Id
  59 + inner join AIAUser US on UL.UserId = US.Id where LE.LicenseId = @Id order by LE.Id desc;
  60 +
  61 + select L.Id, L.LicenseTypeId, L.AccountNumber, L.AccountTypeId, L.Address1, L.Address2, L.LicenseeFirstName, L.LicenseeLastName, L.City,
  62 + L.CountryId, L.StateId, L.EmailId, L.InstitutionName, L.Phone, L.ProductId, L.Zip, L.TotalLogins, @EditionLoginText as EditionLogins,
  63 + @SubscriptionStartDate as SubscriptionStartDate, @SubscriptionEndDate as SubscriptionEndDate, @NoOfImages as NoOfImages, @TotalAmount as Price,
  64 + @SiteIp as SiteUrl, @SiteIpTo as SitToUrl, @SiteMasterIPTo as SiteMasterUrl, @UserId as UserId, @Login as Login, @Password as Password,
  65 + @SecurityQuestionId as SecurityQuestionId, @Answer as Answer, L.NoOfRenewals as TotalRenewals, @RenewalDate as RenewalDate, L.IsActive
  66 + from License L where L.Id = @Id;
  67 +
  68 +END
  69 +
  70 +GO
  71 +SET QUOTED_IDENTIFIER OFF
  72 +GO
  73 +SET ANSI_NULLS ON
  74 +GO
0 \ No newline at end of file 75 \ No newline at end of file
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenseTypes.sql 0 → 100644
1 Binary files /dev/null and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenseTypes.sql differ 1 Binary files /dev/null and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenseTypes.sql differ
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenses.sql 0 → 100644
1 Binary files /dev/null and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenses.sql differ 1 Binary files /dev/null and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetLicenses.sql differ
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetSubscriptionPlans.sql
1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetSubscriptionPlans.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetSubscriptionPlans.sql differ 1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetSubscriptionPlans.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_GetSubscriptionPlans.sql differ
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_InsertSubscriptionPlan.sql
1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_InsertSubscriptionPlan.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_InsertSubscriptionPlan.sql differ 1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_InsertSubscriptionPlan.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_InsertSubscriptionPlan.sql differ
150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_UpdateSubscriptionPlan.sql
1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_UpdateSubscriptionPlan.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_UpdateSubscriptionPlan.sql differ 1 Binary files a/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_UpdateSubscriptionPlan.sql and b/150-DOCUMENTATION/002-DBScripts/Admin/Store Procedure/usp_UpdateSubscriptionPlan.sql differ
400-SOURCECODE/.gitignore
@@ -25,12 +25,12 @@ obj/ @@ -25,12 +25,12 @@ obj/
25 *.sbr 25 *.sbr
26 26
27 AIAHTML5.ADMIN.API/* 27 AIAHTML5.ADMIN.API/*
28 -!AIAHTML5.ADMIN.API/Gloabl.asax  
29 -!AIAHTML5.ADMIN.API/Gloabl.cs 28 +!AIAHTML5.ADMIN.API/Global.asax
  29 +!AIAHTML5.ADMIN.API/Global.cs
30 !AIAHTML5.ADMIN.API/Scripts 30 !AIAHTML5.ADMIN.API/Scripts
31 AIAHTML5.API/* 31 AIAHTML5.API/*
32 -!AIAHTML5.API/Gloabl.asax  
33 -!AIAHTML5.API/Gloabl.cs 32 +!AIAHTML5.API/Global.asax
  33 +!AIAHTML5.API/Global.cs
34 Admin/* 34 Admin/*
35 !Admin/dist 35 !Admin/dist
36 [Rr]elease*/ 36 [Rr]elease*/
400-SOURCECODE/AIAHTML5.ADMIN.API/Web.config deleted
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<!--  
3 - For more information on how to configure your ASP.NET application, please visit  
4 - http://go.microsoft.com/fwlink/?LinkId=301879  
5 - -->  
6 -<configuration>  
7 - <configSections>  
8 - <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />  
9 - </configSections>  
10 - <appSettings>  
11 - <add key="webpages:Version" value="3.0.0.0" />  
12 - <add key="webpages:Enabled" value="false" />  
13 - <add key="ClientValidationEnabled" value="true" />  
14 - <add key="UnobtrusiveJavaScriptEnabled" value="true" />  
15 - </appSettings>  
16 - <system.web>  
17 - <compilation debug="true" targetFramework="4.5" />  
18 - <httpRuntime targetFramework="4.5" />  
19 - </system.web>  
20 - <runtime>  
21 - <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">  
22 - <dependentAssembly>  
23 - <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />  
24 - <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />  
25 - </dependentAssembly>  
26 - <dependentAssembly>  
27 - <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />  
28 - <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />  
29 - </dependentAssembly>  
30 - <dependentAssembly>  
31 - <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />  
32 - <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />  
33 - </dependentAssembly>  
34 - <dependentAssembly>  
35 - <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />  
36 - <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />  
37 - </dependentAssembly>  
38 - <dependentAssembly>  
39 - <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />  
40 - <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />  
41 - </dependentAssembly>  
42 - <dependentAssembly>  
43 - <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />  
44 - <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />  
45 - </dependentAssembly>  
46 - <dependentAssembly>  
47 - <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />  
48 - <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />  
49 - </dependentAssembly>  
50 - <dependentAssembly>  
51 - <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />  
52 - <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />  
53 - </dependentAssembly>  
54 - </assemblyBinding>  
55 - </runtime>  
56 - <connectionStrings>  
57 - <add name="AIADatabaseV5Entities1" connectionString="metadata=res://*/Entity.AIADBEntity.csdl|res://*/Entity.AIADBEntity.ssdl|res://*/Entity.AIADBEntity.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=192.168.90.53;initial catalog=AIADatabaseV5;user id=aia_dev;password=india123;multipleactiveresultsets=True;application name=EntityFramework&quot;" providerName="System.Data.EntityClient" />  
58 - <add name="AIADatabaseV5Entities" connectionString="metadata=res://*/Entity.AIADBEntity.csdl|res://*/Entity.AIADBEntity.ssdl|res://*/Entity.AIADBEntity.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=192.168.90.53;initial catalog=AIADatabaseV5;persist security info=True;user id=aia_dev;password=india123;multipleactiveresultsets=True;application name=EntityFramework&quot;" providerName="System.Data.EntityClient" /></connectionStrings>  
59 - <entityFramework>  
60 - <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />  
61 - </entityFramework>  
62 - <system.webServer>  
63 - <!--<rewrite>  
64 - <rules>  
65 - <rule name="AngularJS Routes" stopProcessing="true">  
66 - <match url=".*" />  
67 - <conditions logicalGrouping="MatchAll">  
68 - <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />  
69 - <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />  
70 - <add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />  
71 - </conditions>  
72 - <action type="Rewrite" url="/" />  
73 - </rule>  
74 - </rules>  
75 - </rewrite>-->  
76 - <handlers>  
77 - <remove name="ExtensionlessUrlHandler-Integrated-4.0" />  
78 - <remove name="OPTIONSVerbHandler" />  
79 - <remove name="TRACEVerbHandler" />  
80 - <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />  
81 - </handlers>  
82 - </system.webServer>  
83 -</configuration>  
84 \ No newline at end of file 0 \ No newline at end of file
400-SOURCECODE/AIAHTML5.API/Web.config deleted
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<!--  
3 - For more information on how to configure your ASP.NET application, please visit  
4 - http://go.microsoft.com/fwlink/?LinkId=301879  
5 - -->  
6 -<configuration>  
7 - <configSections>  
8 - <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />  
9 - <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">  
10 - <section name="AIAHTML5.API.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />  
11 - </sectionGroup>  
12 - </configSections>  
13 -  
14 - <log4net debug="true">  
15 - <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">  
16 - <file value="Logs\AIALogs.log" />  
17 - <appendToFile value="true" />  
18 - <rollingStyle value="Size" />  
19 - <maxSizeRollBackups value="10" />  
20 - <maximumFileSize value="10MB" />  
21 - <staticLogFileName value="true" />  
22 - <layout type="log4net.Layout.PatternLayout">  
23 - <conversionPattern value="%-5p %d %5rms %-22.22c{1} %-18.18M - %m%n" />  
24 - </layout>  
25 - </appender>  
26 -  
27 - <root>  
28 - <level value="DEBUG" />  
29 - <appender-ref ref="RollingLogFileAppender" />  
30 - </root>  
31 - </log4net>  
32 -  
33 - <appSettings>  
34 - <add key="SenderEmailAddress" value="support@interactiveanatomy.com" />  
35 - <add key="ErrorNotificationEmailAddress" value="support@interactiveanatomy.com" />  
36 - <add key="SenderPassword" value="" />  
37 - <add key="SMTPAddress" value="10.100.12.13" />  
38 - <add key="SMTPPort" value="25" />  
39 - <add key="EnableSSL" value="false" />  
40 - <add key="Site_Url" value ="http://qa.beta.interactiveanatomy.com/"/>  
41 - <add key ="HostAddress" value="10.100.12.13" />  
42 - <add key="AdminSupport" value="amrita.vishnoi@ebix.com,nikita.kulshreshtha@ebix.com"/>  
43 - <add key ="AIADatabaseV5Context" value="Data Source=192.168.90.53;Initial Catalog=AIADatabaseV5;User ID=AIA_Dev;Password=india123;"/>  
44 - <add key ="LogoPath" value="~/content/images/logo.png"/>  
45 - <add key ="UnblockUserEmailTemplate" value="~/Templates/unblock-User.html"/>  
46 - <add key ="ForgotPasswordEmailTemplate" value="~/Templates/forgot-Password.html"/>  
47 - <add key ="ForgotUserIdEmailTemplate" value="~/Templates/forgot-UserId.html"/>  
48 -  
49 -  
50 - <!--<add key ="AIADatabaseV5Context" value="Data Source=52.6.248.70;Initial Catalog=AIADatabase;User ID=amrita;Password=Ebix@2017;"/>-->  
51 -  
52 - </appSettings>  
53 - <system.web>  
54 - <compilation debug="true" targetFramework="4.5" />  
55 - <httpRuntime targetFramework="4.5" />  
56 - </system.web>  
57 -  
58 - <applicationSettings>  
59 - <AIAHTML5.API.Properties.Settings>  
60 - <setting name="AIAConnectionString" serializeAs="String">  
61 - <value>localhost:27017</value>  
62 - </setting>  
63 - <setting name="database" serializeAs="String">  
64 - <value>AIA</value>  
65 - </setting>  
66 - </AIAHTML5.API.Properties.Settings>  
67 - </applicationSettings>  
68 - <runtime>  
69 - <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">  
70 - <dependentAssembly>  
71 - <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />  
72 - <bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="6.0.0.0" />  
73 - </dependentAssembly>  
74 - <dependentAssembly>  
75 - <assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral" />  
76 - <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />  
77 - </dependentAssembly>  
78 - <dependentAssembly>  
79 - <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" />  
80 - <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />  
81 - </dependentAssembly>  
82 - <dependentAssembly>  
83 - <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />  
84 - <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.0.0" />  
85 - </dependentAssembly>  
86 - </assemblyBinding>  
87 - </runtime>  
88 - <system.webServer>  
89 - <handlers>  
90 - <remove name="ExtensionlessUrlHandler-Integrated-4.0" />  
91 - <remove name="OPTIONSVerbHandler" />  
92 - <remove name="TRACEVerbHandler" />  
93 - <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />  
94 - </handlers>  
95 - </system.webServer>  
96 -</configuration>  
97 \ No newline at end of file 0 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
@@ -8455,7 +8455,7 @@ AIA.controller(&quot;DAController&quot;, [&quot;$scope&quot;, &quot;$rootScope&quot;, &quot;$compile&quot;, &quot;$http&quot;, &quot;$l @@ -8455,7 +8455,7 @@ AIA.controller(&quot;DAController&quot;, [&quot;$scope&quot;, &quot;$rootScope&quot;, &quot;$compile&quot;, &quot;$http&quot;, &quot;$l
8455 angular.forEach(systemList, function (value, key) { 8455 angular.forEach(systemList, function (value, key) {
8456 8456
8457 systemListHtml = systemListHtml + '<li><a href="#" id="' + value._BodySystemId + '" title="' + value._Name + '">' + value._Name + '</a></li>' 8457 systemListHtml = systemListHtml + '<li><a href="#" id="' + value._BodySystemId + '" title="' + value._Name + '">' + value._Name + '</a></li>'
8458 - }) 8458 + })
8459 8459
8460 systemListHtml = systemListHtml + '</ul>'; 8460 systemListHtml = systemListHtml + '</ul>';
8461 $('#bodySystem').append(systemListHtml); 8461 $('#bodySystem').append(systemListHtml);
@@ -8856,6 +8856,14 @@ AIA.controller(&quot;DAController&quot;, [&quot;$scope&quot;, &quot;$rootScope&quot;, &quot;$compile&quot;, &quot;$http&quot;, &quot;$l @@ -8856,6 +8856,14 @@ AIA.controller(&quot;DAController&quot;, [&quot;$scope&quot;, &quot;$rootScope&quot;, &quot;$compile&quot;, &quot;$http&quot;, &quot;$l
8856 $compile($e2)($scope); 8856 $compile($e2)($scope);
8857 document.getElementById("termlistfilter").style.display = "block"; 8857 document.getElementById("termlistfilter").style.display = "block";
8858 $timeout(function () { 8858 $timeout(function () {
  8859 + $("#backdrop > #searchListDiv > #termlistfilter > li").each(function (key, value) {
  8860 + if ($(this).find("a").html() == document.getElementById("typedTermName").value) {
  8861 + $("#termlistfilter li a").css({ "background-color": "#ffffff", "color": "#000000" });
  8862 + $(this).find("a").css({ "background-color": "#3399FF", "color": "#ffffff" });
  8863 + }
  8864 + });
  8865 + }, 100);
  8866 + $timeout(function () {
8859 $rootScope.searchListArray = []; 8867 $rootScope.searchListArray = [];
8860 $("#backdrop > #searchListDiv > #termlistfilter > li").each(function (key, value) { 8868 $("#backdrop > #searchListDiv > #termlistfilter > li").each(function (key, value) {
8861 $rootScope.searchListArray.push({ "name": $(this).find("a").html(), "id": $(this).find("a").attr("id") }); 8869 $rootScope.searchListArray.push({ "name": $(this).find("a").html(), "id": $(this).find("a").attr("id") });
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
@@ -39,7 +39,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic @@ -39,7 +39,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
39 ethnicity: null, 39 ethnicity: null,
40 modesty: null 40 modesty: null
41 }; 41 };
42 - 42 + $rootScope.current_year = AIAConstants.current_year;
43 // on refersh this variable will also get null that is why we are only checking this variable on initialize that if it is null that means page gets refershed. 43 // on refersh this variable will also get null that is why we are only checking this variable on initialize that if it is null that means page gets refershed.
44 $rootScope.refreshcheck = null; 44 $rootScope.refreshcheck = null;
45 $rootScope.isCloseSettingClicked = false; 45 $rootScope.isCloseSettingClicked = false;
@@ -5005,6 +5005,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic @@ -5005,6 +5005,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
5005 $("#canvas").css("display", "none"); 5005 $("#canvas").css("display", "none");
5006 5006
5007 } 5007 }
  5008 + $(".currentyear").html($rootScope.current_year);
5008 }, 520); 5009 }, 520);
5009 } 5010 }
5010 else { 5011 else {
@@ -5024,6 +5025,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic @@ -5024,6 +5025,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
5024 $("#canvasPaint").css("display", "none"); 5025 $("#canvasPaint").css("display", "none");
5025 $("#canvas").css("display", "none"); 5026 $("#canvas").css("display", "none");
5026 } 5027 }
  5028 + $(".currentyear").html($rootScope.current_year);
5027 }, 320); 5029 }, 320);
5028 } 5030 }
5029 5031
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
@@ -55,6 +55,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou @@ -55,6 +55,8 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
55 }; 55 };
56 56
57 $scope.loadForModuleById = function (moduleId) { 57 $scope.loadForModuleById = function (moduleId) {
  58 + $rootScope.isLoading = true;
  59 + $('#spinner').css('visibility', 'visible');
58 $rootScope.openModules.push({ "ModuleId": 2 }); 60 $rootScope.openModules.push({ "ModuleId": 2 });
59 if ($rootScope.refreshcheck == null) { 61 if ($rootScope.refreshcheck == null) {
60 $location.path('/'); 62 $location.path('/');
@@ -80,7 +82,10 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou @@ -80,7 +82,10 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
80 } 82 }
81 if ($rootScope.getLocalStorageValue('AAGridViewScroll') !== null && $location.url() == "/tile-view-list") { 83 if ($rootScope.getLocalStorageValue('AAGridViewScroll') !== null && $location.url() == "/tile-view-list") {
82 $('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow'); 84 $('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow');
  85 +
83 } 86 }
  87 + $rootScope.isLoading = false;
  88 + $('#spinner').css('visibility', 'hidden');
84 }, 100); 89 }, 100);
85 //console.log(JSON.stringify(result, null, 4)); 90 //console.log(JSON.stringify(result, null, 4));
86 }, 91 },
400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
@@ -496,6 +496,7 @@ AIA.constant(&quot;UserModules&quot;, [ @@ -496,6 +496,7 @@ AIA.constant(&quot;UserModules&quot;, [
496 AIA.constant("AIAConstants", { 496 AIA.constant("AIAConstants", {
497 "NO_BODY_SYSTEM_AVAILABLE": "Selected body system is not available on this layer.", 497 "NO_BODY_SYSTEM_AVAILABLE": "Selected body system is not available on this layer.",
498 "COOKIES_MESSAGE": "You need to enable your browser's cookies to run this application.", 498 "COOKIES_MESSAGE": "You need to enable your browser's cookies to run this application.",
  499 + "current_year": 2018,
499 }) 500 })
500 501
501 502
400-SOURCECODE/AIAHTML5.Web/app/views/Home/printPreview.html
@@ -47,7 +47,7 @@ @@ -47,7 +47,7 @@
47 </div> 47 </div>
48 <div> 48 <div>
49 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px;"> 49 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px;">
50 - <span class="pull-left pp-marginTop10 font12 span-font" id="spPorCopyright">Copyright 2016 A.D.A.M., Inc. All Rights Reserved</span> 50 + <span class="pull-left pp-marginTop10 font12 span-font" id="spPorCopyright">Copyright <span class="currentyear"></span> A.D.A.M., Inc. All Rights Reserved</span>
51 </div> 51 </div>
52 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px; right: 10px;"> 52 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px; right: 10px;">
53 <span class="pull-right pp-marginTop10 bgnone no-margin" id="spPorLogo"> 53 <span class="pull-right pp-marginTop10 bgnone no-margin" id="spPorLogo">
@@ -72,7 +72,7 @@ @@ -72,7 +72,7 @@
72 </div> 72 </div>
73 <div class="print-footer-land"> 73 <div class="print-footer-land">
74 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px; left: 10px;"> 74 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px; left: 10px;">
75 - <span class="pull-left pp-marginTop10 font12 span-font" id="spLanCopyright">Copyright 2016 A.D.A.M., Inc. All Rights Reserved</span> 75 + <span class="pull-left pp-marginTop10 font12 span-font" id="spLanCopyright">Copyright <span class="currentyear"></span> A.D.A.M., Inc. All Rights Reserved</span>
76 </div> 76 </div>
77 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px; right: 10px;"> 77 <div class="pp-col-sm-4" style="position: absolute; bottom: 20px; right: 10px;">
78 <span class="pull-right pp-marginTop10 bgnone no-margin" id="spLanLogo"> 78 <span class="pull-right pp-marginTop10 bgnone no-margin" id="spLanLogo">
400-SOURCECODE/AIAHTML5.Web/index.html
@@ -1093,7 +1093,7 @@ @@ -1093,7 +1093,7 @@
1093 </div> 1093 </div>
1094 <div> 1094 <div>
1095 <div class="print-col-sm-4" style="position: absolute; bottom: 20px;"> 1095 <div class="print-col-sm-4" style="position: absolute; bottom: 20px;">
1096 - <span class="pull-left marginTop10 font12 print-span-font">Copyright 2016 A.D.A.M., Inc. All Rights Reserved</span> 1096 + <span class="pull-left marginTop10 font12 print-span-font">Copyright {{current_year}} A.D.A.M., Inc. All Rights Reserved</span>
1097 </div> 1097 </div>
1098 <div class="print-col-sm-4" style="position: absolute; bottom: 20px; right: 10px;"> 1098 <div class="print-col-sm-4" style="position: absolute; bottom: 20px; right: 10px;">
1099 <span class="pull-right print-marginTop10 bgnone no-margin"> 1099 <span class="pull-right print-marginTop10 bgnone no-margin">
400-SOURCECODE/AIAHTML5.Web/themes/default/scripts/bootstrap/3.3.5/bootstrap.js
@@ -629,13 +629,27 @@ if (typeof jQuery === &#39;undefined&#39;) { @@ -629,13 +629,27 @@ if (typeof jQuery === &#39;undefined&#39;) {
629 629
630 // APPLY TO STANDARD DROPDOWN ELEMENTS 630 // APPLY TO STANDARD DROPDOWN ELEMENTS
631 // =================================== 631 // ===================================
632 - 632 + var $ua = navigator.userAgent;
  633 + if (($ua.match(/(iPod|iPhone|iPad)/i))) {
633 $(document) 634 $(document)
634 - .on('click.bs.dropdown.data-api', clearMenus)  
635 - .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })  
636 - .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)  
637 - .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)  
638 - .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown) 635 + .on('click.bs.dropdown.data-api', clearMenus)
  636 + .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
  637 + .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
  638 + .on('touchstart.bs.dropdown.data-api', clearMenus)
  639 + .on('touchstart.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
  640 + .on('touchstart.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
  641 + .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
  642 + .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
  643 +}
  644 +else
  645 +{
  646 + $(document)
  647 + .on('click.bs.dropdown.data-api', clearMenus)
  648 + .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
  649 + .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
  650 + .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)
  651 + .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)
  652 +}
639 653
640 }(jQuery); 654 }(jQuery);
641 655
400-SOURCECODE/Admin/dist/assets/styles/admin-custom.css
@@ -131,20 +131,29 @@ @@ -131,20 +131,29 @@
131 color: #fff; 131 color: #fff;
132 } 132 }
133 #tblDiscountCodes, #fixed_hdr2 > tbody > tr.active > td { 133 #tblDiscountCodes, #fixed_hdr2 > tbody > tr.active > td {
134 - background: #000; 134 +.table-fixed tbody {
  135 + display: block;
  136 + height: 250px;
  137 + overflow: auto;
  138 +}
  139 +#fixed_hdr2 > tbody > tr.active > td {
  140 + background: #726D6D;
  141 + color: #FDFBFB;
  142 +}
  143 +
  144 + background: #726D6D;
135 color: #FDFBFB; 145 color: #FDFBFB;
136 } 146 }
137 147
138 #tblDiscountCodes, #fixed_hdr2 > tbody > tr.inactive > td { 148 #tblDiscountCodes, #fixed_hdr2 > tbody > tr.inactive > td {
139 background: #FDFBFB; 149 background: #FDFBFB;
140 - color: #000;  
141 -}  
142 -.table-fixed tbody {  
143 - display: block;  
144 - height: 250px;  
145 - overflow: auto; 150 + color: #726D6D;
146 } 151 }
147 152
  153 +#fixed_hdr2 > tbody > tr.inactive > td {
  154 + background: #FDFBFB;
  155 + color: #726D6D;
  156 +}
148 .table-fixed thead, .table-fixed tbody tr { 157 .table-fixed thead, .table-fixed tbody tr {
149 display: table; 158 display: table;
150 width: 100%; 159 width: 100%;
400-SOURCECODE/Admin/dist/index.html
1 -<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"><title>A.D.A.M. Interactive Anatomy</title><link href="assets/styles/bootstrap.css" rel="stylesheet"><link href="assets/styles/main.css" rel="stylesheet"><link href="assets/styles/admin-custom.css" rel="stylesheet"><link href="assets/styles/angular-custom.css" rel="stylesheet"><link href="assets/styles/bootstrap-datetimepicker.min.css" rel="stylesheet"><link rel="stylesheet" href="https://unpkg.com/ngx-bootstrap/datepicker/bs-datepicker.css"/><link href="assets/styles/fixed_table_rc.css" type="text/css" rel="stylesheet" media="all"/><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,400italic"><!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --><!-- WARNING: Respond.js doesn't work if you view the page via file:// --><!--[if lt IE 9]> 1 +
  2 +<!DOCTYPE html>
  3 +<html lang="en">
  4 +<head>
  5 + <meta charset="utf-8">
  6 + <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7 + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  8 + <title>A.D.A.M. Interactive Anatomy</title>
  9 + <link href="assets/styles/bootstrap.css" rel="stylesheet">
  10 + <link href="assets/styles/main.css" rel="stylesheet">
  11 + <link href="assets/styles/admin-custom.css" rel="stylesheet">
  12 + <link href="assets/styles/angular-custom.css" rel="stylesheet">
  13 + <link href="assets/styles/bootstrap-datetimepicker.min.css" rel="stylesheet">
  14 + <link href="assets/styles/bootstrap-spinner.css" rel="stylesheet">
  15 + <link rel="stylesheet" href="https://unpkg.com/ngx-bootstrap/datepicker/bs-datepicker.css" />
  16 + <link href="assets/styles/fixed_table_rc.css" type="text/css" rel="stylesheet" media="all" />
  17 + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  18 + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,400italic">
  19 +
  20 + <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  21 + <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  22 + <!--[if lt IE 9]>
2 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> 23 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
3 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 24 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
4 - <![endif]--><link href="styles.d41d8cd98f00b204e980.bundle.css" rel="stylesheet"/></head><body><div class="container-fluid"><app-component></app-component></div><script src="assets/scripts/jquery-1.11.3.min.js"></script><script src="assets/scripts/bootstrap.js"></script><script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script><script src="https://meetselva.github.io/fixed-table-rows-cols/js/sortable_table.js" type="text/javascript"></script><script src="assets/scripts/fixed_table_rc.js" type="text/javascript"></script><!--Nav--><script>$(function () { 25 + <![endif]-->
  26 +
  27 +</head>
  28 +<body>
  29 + <div class="container-fluid">
  30 + <div id="global-loading"></div>
  31 + <div id="loading-mask"></div>
  32 + <app-component></app-component>
  33 + </div>
  34 +
  35 + <script src="assets/scripts/jquery-1.11.3.min.js"></script>
  36 + <script src="assets/scripts/bootstrap.js"></script>
  37 + <script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  38 + <script src="https://meetselva.github.io/fixed-table-rows-cols/js/sortable_table.js" type="text/javascript"></script>
  39 + <script src="assets/scripts/fixed_table_rc.js" type="text/javascript"></script>
  40 + <!--Nav-->
  41 + <script>
  42 + $(function () {
5 $("#slider-range-min-2").slider({ 43 $("#slider-range-min-2").slider({
6 range: "min", 44 range: "min",
7 min: 1, 45 min: 1,
@@ -13,28 +51,39 @@ @@ -13,28 +51,39 @@
13 }); 51 });
14 $("#amount-2").val($("#slider-vertical-2").slider("value")); 52 $("#amount-2").val($("#slider-vertical-2").slider("value"));
15 53
16 - });</script><script>$(function () {  
17 -  
18 -  
19 - $('#fixed_hdr2').fxdHdrCol({  
20 - fixedCols: 0,  
21 - width: "100%",  
22 - height: 300,  
23 - colModal: [  
24 - { width: 150, align: 'center' },  
25 - { width: 150, align: 'center' },  
26 - { width: 150, align: 'Center' },  
27 - { width: 150, align: 'Center' },  
28 - { width: 150, align: 'Center' },  
29 - { width: 100, align: 'Center' },  
30 - { width: 130, align: 'Center' },  
31 - { width: 200, align: 'center' },  
32 - { width: 200, align: 'Center' },  
33 - { width: 200, align: 'center' },  
34 - { width: 100, align: 'center' },  
35 - ],  
36 - sort: true  
37 - });  
38 - });</script><!--Nav--><script>$('.modal').draggable({ 54 + });
  55 + </script>
  56 + <script>
  57 + $(function () {
  58 +
  59 +
  60 + //$('#fixed_hdr2').fxdHdrCol({
  61 + // fixedCols: 0,
  62 + // width: "100%",
  63 + // height: 300,
  64 + // colModal: [
  65 + // { width: 150, align: 'center' },
  66 + // { width: 150, align: 'center' },
  67 + // { width: 150, align: 'Center' },
  68 + // { width: 150, align: 'Center' },
  69 + // { width: 150, align: 'Center' },
  70 + // { width: 100, align: 'Center' },
  71 + // { width: 130, align: 'Center' },
  72 + // { width: 200, align: 'center' },
  73 + // { width: 200, align: 'Center' },
  74 + // { width: 200, align: 'center' },
  75 + // { width: 100, align: 'center' },
  76 + // ],
  77 + // sort: true
  78 + //});
  79 + });
  80 + </script>
  81 + <!--Nav-->
  82 +
  83 + <script>
  84 + $('.modal').draggable({
39 handle: '.modal-header' 85 handle: '.modal-header'
40 - })</script><script type="text/javascript" src="inline.9d77a4c954b77a1ca6d9.bundle.js"></script><script type="text/javascript" src="polyfills.35726d60cdf25fecc5f1.bundle.js"></script><script type="text/javascript" src="vendor.e31bb9436e3fa25e1d2e.bundle.js"></script><script type="text/javascript" src="main.0600256b4bbbaf808e53.bundle.js"></script></body></html>  
41 \ No newline at end of file 86 \ No newline at end of file
  87 + })
  88 + </script>
  89 +<script type="text/javascript" src="inline.bundle.js"></script><script type="text/javascript" src="polyfills.bundle.js"></script><script type="text/javascript" src="styles.bundle.js"></script><script type="text/javascript" src="vendor.bundle.js"></script><script type="text/javascript" src="main.bundle.js"></script></body>
  90 +</html>
500-DBDump/AIA-StoredProcedures/dbo.ClearSessionManager.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.ClearSessionManager.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.ClearSessionManager.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBackGroundArtList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBackGroundArtList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBackGroundArtList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBaseLayer.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBaseLayer.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBaseLayer.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBitmask.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBitmask.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBitmask.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegion.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegion.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegion.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionView.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionView.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionView.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionViewList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionViewList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetBodyRegionViewList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetDissectibleContent.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetDissectibleContent.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetDissectibleContent.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetGenderList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetGenderList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetGenderList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetLayerModel.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetLayerModel.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetLayerModel.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetLayerdata.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetLayerdata.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetLayerdata.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetLexiconTermList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetLexiconTermList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetLexiconTermList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetNavigatorModel.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetNavigatorModel.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetNavigatorModel.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetOverLayLayerList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetOverLayLayerList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetOverLayLayerList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetPLRModel.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetPLRModel.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetPLRModel.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetPolygonForId.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetPolygonForId.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetPolygonForId.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureGroupId.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureGroupId.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureGroupId.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureGroupList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureGroupList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureGroupList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetStructureList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetTermList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetTermList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetTermList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetTermNumberForContentId.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetTermNumberForContentId.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetTermNumberForContentId.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetViewOrientation.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetViewOrientation.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetViewOrientation.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetViewOrientationList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetViewOrientationList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetViewOrientationList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_GetVocabTermModal.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetVocabTermModal.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_GetVocabTermModal.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DA_LayerNumberInternal.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_LayerNumberInternal.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DA_LayerNumberInternal.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DeleteIncorrectLoginAttempts.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DeleteIncorrectLoginAttempts.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DeleteIncorrectLoginAttempts.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DeleteLicense.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DeleteLicense.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DeleteLicense.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.DeleteUserSession.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DeleteUserSession.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.DeleteUserSession.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_CreateUser.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_CreateUser.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_CreateUser.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetAccountTypeList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetAccountTypeList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetAccountTypeList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetCountryList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetCountryList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetCountryList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetCourseConductedList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetCourseConductedList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetCourseConductedList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetInstitutionList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetInstitutionList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetInstitutionList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetInternetProductList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetInternetProductList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetInternetProductList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetMultimediaProductList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetMultimediaProductList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetMultimediaProductList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetProductRequiredList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetProductRequiredList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetProductRequiredList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetReferList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetReferList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetReferList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetSecurityQuestionList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSecurityQuestionList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSecurityQuestionList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetStateList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetStateList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetStateList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionDuration.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionDuration.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionDuration.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionEndDate.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionEndDate.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionEndDate.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPlan.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPlan.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPlan.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPlanInfo.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPlanInfo.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPlanInfo.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPrice.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPrice.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetSubscriptionPrice.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_GetUsername.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetUsername.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_GetUsername.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_InsertPaymentTransaction.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_InsertPaymentTransaction.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_InsertPaymentTransaction.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.EC_UpdateUser.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_UpdateUser.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.EC_UpdateUser.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAIALicenseDetails.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAIALicenseDetails.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAIALicenseDetails.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAccountModule.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAccountModule.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAccountModule.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAllEditionForLicense.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllEditionForLicense.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllEditionForLicense.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAllLoginFailureCauses.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllLoginFailureCauses.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllLoginFailureCauses.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAllModuleStatus.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllModuleStatus.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllModuleStatus.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAllModuleStatusWithSlug.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllModuleStatusWithSlug.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllModuleStatusWithSlug.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAllUserWithGroup.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllUserWithGroup.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAllUserWithGroup.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAttributeTypeList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAttributeTypeList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAttributeTypeList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetAttributeValueList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAttributeValueList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetAttributeValueList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByAccNoAndType.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByAccNoAndType.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByAccNoAndType.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByUserId.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByUserId.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByUserId.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByUserType.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByUserType.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserByUserType.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserDetailsByUserIdAndUserTypeId.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserDetailsByUserIdAndUserTypeId.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetBlockedUserDetailsByUserIdAndUserTypeId.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetCAMSearch.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCAMSearch.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCAMSearch.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetCancelledLicenses.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCancelledLicenses.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCancelledLicenses.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetContentAttributeData.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetContentAttributeData.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetContentAttributeData.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetContentList.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetContentList.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetContentList.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary_25042017.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary_25042017.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary_25042017.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary_bkp.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary_bkp.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetCustomerSummary_bkp.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetDiscountCodes.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountCodes.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountCodes.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetDiscountDetails.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountDetails.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountDetails.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetDiscountReport.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountReport.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountReport.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetDiscountedPrice.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountedPrice.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetDiscountedPrice.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetEditionsBySiteAccount.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetEditionsBySiteAccount.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetEditionsBySiteAccount.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetEncyclopediaSearch.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetEncyclopediaSearch.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetEncyclopediaSearch.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetExpiringLicenses.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetExpiringLicenses.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetExpiringLicenses.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetExportedImageDetails.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetExportedImageDetails.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetExportedImageDetails.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetImagePinData.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetImagePinData.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetImagePinData.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetInDepthSearch.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetInDepthSearch.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetInDepthSearch.StoredProcedure.sql differ
500-DBDump/AIA-StoredProcedures/dbo.GetIncorrectLoginAttempt.StoredProcedure.sql 0 → 100644
1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetIncorrectLoginAttempt.StoredProcedure.sql differ 1 Binary files /dev/null and b/500-DBDump/AIA-StoredProcedures/dbo.GetIncorrectLoginAttempt.StoredProcedure.sql differ