├── .gitattributes ├── .gitignore ├── ClassMetotDemo ├── ClassMetotDemo.sln └── ClassMetotDemo │ ├── ClassMetotDemo.csproj │ ├── Customer.cs │ ├── CustomerManager.cs │ └── Program.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /ClassMetotDemo/ClassMetotDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/ClassMetotDemo/ClassMetotDemo.sln -------------------------------------------------------------------------------- /ClassMetotDemo/ClassMetotDemo/ClassMetotDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/ClassMetotDemo/ClassMetotDemo/ClassMetotDemo.csproj -------------------------------------------------------------------------------- /ClassMetotDemo/ClassMetotDemo/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/ClassMetotDemo/ClassMetotDemo/Customer.cs -------------------------------------------------------------------------------- /ClassMetotDemo/ClassMetotDemo/CustomerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/ClassMetotDemo/ClassMetotDemo/CustomerManager.cs -------------------------------------------------------------------------------- /ClassMetotDemo/ClassMetotDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rzayevsahil/ClassMetotDemo/HEAD/ClassMetotDemo/ClassMetotDemo/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ClassMetotDemo --------------------------------------------------------------------------------