From c79a736e70c993be0652d7cabf2646ae125cc2e2 Mon Sep 17 00:00:00 2001 From: Gary Sharp Date: Thu, 16 May 2013 20:46:42 +1000 Subject: [PATCH] Update: 'Bezel - Case Bottom Load Cover' SubType --- Disco.BI/Properties/AssemblyInfo.cs | 4 ++-- Disco.Client/Properties/AssemblyInfo.cs | 4 ++-- Disco.ClientBootstrapper/Properties/AssemblyInfo.cs | 4 ++-- Disco.Data/Properties/AssemblyInfo.cs | 4 ++-- Disco.Data/Repository/DiscoDataSeeder.cs | 9 +++++++++ Disco.Models/Properties/AssemblyInfo.cs | 4 ++-- Disco.Services/Properties/AssemblyInfo.cs | 4 ++-- Disco.Web.Extensions/Properties/AssemblyInfo.cs | 4 ++-- Disco.Web/Properties/AssemblyInfo.cs | 4 ++-- 9 files changed, 25 insertions(+), 16 deletions(-) diff --git a/Disco.BI/Properties/AssemblyInfo.cs b/Disco.BI/Properties/AssemblyInfo.cs index d47ef792..8e9c9207 100644 --- a/Disco.BI/Properties/AssemblyInfo.cs +++ b/Disco.BI/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2044")] +[assembly: AssemblyFileVersion("1.2.0516.2044")] \ No newline at end of file diff --git a/Disco.Client/Properties/AssemblyInfo.cs b/Disco.Client/Properties/AssemblyInfo.cs index 151098f4..1a485eed 100644 --- a/Disco.Client/Properties/AssemblyInfo.cs +++ b/Disco.Client/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2043")] +[assembly: AssemblyFileVersion("1.2.0516.2043")] \ No newline at end of file diff --git a/Disco.ClientBootstrapper/Properties/AssemblyInfo.cs b/Disco.ClientBootstrapper/Properties/AssemblyInfo.cs index 893dd862..46b3547e 100644 --- a/Disco.ClientBootstrapper/Properties/AssemblyInfo.cs +++ b/Disco.ClientBootstrapper/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2043")] +[assembly: AssemblyFileVersion("1.2.0516.2043")] \ No newline at end of file diff --git a/Disco.Data/Properties/AssemblyInfo.cs b/Disco.Data/Properties/AssemblyInfo.cs index 09fc5bdf..995cd0b8 100644 --- a/Disco.Data/Properties/AssemblyInfo.cs +++ b/Disco.Data/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2044")] +[assembly: AssemblyFileVersion("1.2.0516.2044")] \ No newline at end of file diff --git a/Disco.Data/Repository/DiscoDataSeeder.cs b/Disco.Data/Repository/DiscoDataSeeder.cs index 0c96c544..a293aa55 100644 --- a/Disco.Data/Repository/DiscoDataSeeder.cs +++ b/Disco.Data/Repository/DiscoDataSeeder.cs @@ -199,6 +199,15 @@ namespace Disco.Data.Repository context.JobSubTypes.Add(new JobSubType { Id = "Microphone", JobTypeId = JobType.JobTypeIds.HWar, Description = "Microphone" }); #endregion // End Feature Request + + // Feature Request 2013-05-16 by Michael + #region "Bezel - Case Bottom Load Cover" Added + if (context.JobSubTypes.Count(jst => jst.JobTypeId == JobType.JobTypeIds.HNWar && jst.Id == "BezelCaseBottomCover") == 0) + context.JobSubTypes.Add(new JobSubType { Id = "BezelCaseBottomCover", JobTypeId = JobType.JobTypeIds.HNWar, Description = "Bezel - Case Bottom Load Cover" }); + if (context.JobSubTypes.Count(jst => jst.JobTypeId == JobType.JobTypeIds.HWar && jst.Id == "BezelCaseBottomCover") == 0) + context.JobSubTypes.Add(new JobSubType { Id = "BezelCaseBottomCover", JobTypeId = JobType.JobTypeIds.HWar, Description = "Bezel - Case Bottom Load Cover" }); + #endregion + // End Feature Request } private static void UpdateDeviceModelConfiguration(this DiscoDataContext context) diff --git a/Disco.Models/Properties/AssemblyInfo.cs b/Disco.Models/Properties/AssemblyInfo.cs index 6d62da0d..6136c761 100644 --- a/Disco.Models/Properties/AssemblyInfo.cs +++ b/Disco.Models/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2044")] +[assembly: AssemblyFileVersion("1.2.0516.2044")] \ No newline at end of file diff --git a/Disco.Services/Properties/AssemblyInfo.cs b/Disco.Services/Properties/AssemblyInfo.cs index 94d5d9e8..7064f3ca 100644 --- a/Disco.Services/Properties/AssemblyInfo.cs +++ b/Disco.Services/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2044")] +[assembly: AssemblyFileVersion("1.2.0516.2044")] \ No newline at end of file diff --git a/Disco.Web.Extensions/Properties/AssemblyInfo.cs b/Disco.Web.Extensions/Properties/AssemblyInfo.cs index 377c037e..32a5c056 100644 --- a/Disco.Web.Extensions/Properties/AssemblyInfo.cs +++ b/Disco.Web.Extensions/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2044")] +[assembly: AssemblyFileVersion("1.2.0516.2044")] \ No newline at end of file diff --git a/Disco.Web/Properties/AssemblyInfo.cs b/Disco.Web/Properties/AssemblyInfo.cs index 689b3266..4500f97b 100644 --- a/Disco.Web/Properties/AssemblyInfo.cs +++ b/Disco.Web/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.2.0516.2018")] -[assembly: AssemblyFileVersion("1.2.0516.2018")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.0516.2044")] +[assembly: AssemblyFileVersion("1.2.0516.2044")] \ No newline at end of file