template pattern

remotes/origin/master
syneffort 3 years ago
parent 7ab8a0df76
commit e1cd9a1296
  1. 6
      DesignPattern/DesignPattern.sln
  2. 6
      DesignPattern/Template/App.config
  3. 20
      DesignPattern/Template/Client.cs
  4. 52
      DesignPattern/Template/Letter.cs
  5. 21
      DesignPattern/Template/OfferLetter.cs
  6. 23
      DesignPattern/Template/Program.cs
  7. 36
      DesignPattern/Template/Properties/AssemblyInfo.cs
  8. 16
      DesignPattern/Template/SalesLetter.cs
  9. 57
      DesignPattern/Template/Template.csproj

@ -37,6 +37,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChainOfResponsibility", "Ch
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Command", "Command\Command.csproj", "{F34D75D4-7025-4CE3-AF7F-11117FA32F8B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Template", "Template\Template.csproj", "{8C1CA345-A2D4-46E2-9FD0-34E8BE4CE7C4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -111,6 +113,10 @@ Global
{F34D75D4-7025-4CE3-AF7F-11117FA32F8B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F34D75D4-7025-4CE3-AF7F-11117FA32F8B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F34D75D4-7025-4CE3-AF7F-11117FA32F8B}.Release|Any CPU.Build.0 = Release|Any CPU
{8C1CA345-A2D4-46E2-9FD0-34E8BE4CE7C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8C1CA345-A2D4-46E2-9FD0-34E8BE4CE7C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8C1CA345-A2D4-46E2-9FD0-34E8BE4CE7C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8C1CA345-A2D4-46E2-9FD0-34E8BE4CE7C4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8.1" />
</startup>
</configuration>

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Template
{
internal class Client
{
public static void HowToTest()
{
Letter letter = new SalesLetter();
letter.Send();
letter = new OfferLetter();
letter.Send();
}
}
}

@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Template
{
// 베이스클래스
internal abstract class Letter
{
public void Send()
{
CompanyLogo();
Greeting();
Message();
Offer();
Ending();
Footer();
}
// 필수
public abstract void Message();
// 옵션
public virtual void Offer() { }
// 고정 메서드 들
private void CompanyLogo()
{
Console.WriteLine("COMPANY LOGO");
}
private void Greeting()
{
Console.WriteLine("HELLO");
}
private void Ending()
{
Console.WriteLine("BYE");
}
private void Footer()
{
Console.WriteLine("WARM REGARD");
}
}
}

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Template
{
internal class OfferLetter : Letter
{
public override void Message()
{
Console.WriteLine("This is offer letter");
}
public override void Offer()
{
Console.WriteLine("This is our offer");
}
}
}

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Template
{
/*
* :
* :
* 릿 /
*/
internal class Program
{
static void Main(string[] args)
{
Client.HowToTest();
Console.ReadKey();
}
}
}

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해
// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
// 이러한 특성 값을 변경하세요.
[assembly: AssemblyTitle("Template")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Template")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에
// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
[assembly: ComVisible(false)]
// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다.
[assembly: Guid("8c1ca345-a2d4-46e2-9fd0-34e8be4ce7c4")]
// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
//
// 주 버전
// 부 버전
// 빌드 번호
// 수정 버전
//
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Template
{
internal class SalesLetter : Letter
{
public override void Message()
{
Console.WriteLine("This is sales letter");
}
}
}

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8C1CA345-A2D4-46E2-9FD0-34E8BE4CE7C4}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Template</RootNamespace>
<AssemblyName>Template</AssemblyName>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Client.cs" />
<Compile Include="Letter.cs" />
<Compile Include="OfferLetter.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SalesLetter.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Loading…
Cancel
Save