-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80bc808
commit 59c4528
Showing
65 changed files
with
1,040 additions
and
56 deletions.
There are no files selected for viewing
Binary file renamed
BIN
+2.08 MB
...1f66329-0754-41f2-af8c-5da88c5b71d2.vsidx → ...1700b81-7cf3-428f-b7dd-b4c09b4b1246.vsidx
Binary file not shown.
Binary file removed
BIN
-772 KB
CoreDemo/.vs/CoreDemo/FileContentIndex/81b11c93-2a7c-43db-a9d2-d98310465f6f.vsidx
Binary file not shown.
Binary file added
BIN
+788 KB
CoreDemo/.vs/CoreDemo/FileContentIndex/9f562cda-5f7c-4ea5-bff2-99f7b5d7e4e1.vsidx
Binary file not shown.
Binary file not shown.
This file contains 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
This file contains 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
Binary file modified
BIN
+512 Bytes
(110%)
CoreDemo/BussinessLayer/bin/Debug/net6.0/BussinessLayer.dll
Binary file not shown.
Binary file modified
BIN
+108 Bytes
(100%)
CoreDemo/BussinessLayer/bin/Debug/net6.0/BussinessLayer.pdb
Binary file not shown.
Binary file modified
BIN
+9.5 KB
(120%)
CoreDemo/BussinessLayer/bin/Debug/net6.0/DataAccessLayer.dll
Binary file not shown.
Binary file modified
BIN
+2.14 KB
(110%)
CoreDemo/BussinessLayer/bin/Debug/net6.0/DataAccessLayer.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
CoreDemo/BussinessLayer/obj/Debug/net6.0/BussinessLayer.csproj.AssemblyReference.cache
Binary file not shown.
Binary file modified
BIN
+512 Bytes
(110%)
CoreDemo/BussinessLayer/obj/Debug/net6.0/BussinessLayer.dll
Binary file not shown.
Binary file modified
BIN
+108 Bytes
(100%)
CoreDemo/BussinessLayer/obj/Debug/net6.0/BussinessLayer.pdb
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
CoreDemo/BussinessLayer/obj/Debug/net6.0/ref/BussinessLayer.dll
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
CoreDemo/BussinessLayer/obj/Debug/net6.0/refint/BussinessLayer.dll
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using BussinessLayer.Concrete; | ||
using DataAccessLayer.EntityFramework; | ||
using Microsoft.AspNetCore.Mvc; | ||
|
||
namespace CoreDemo.ViewComponents.Blog | ||
{ | ||
public class WritersLastBlog:ViewComponent | ||
{ | ||
BlogManager bm=new BlogManager(new EfBlogRepository()); | ||
public IViewComponentResult Invoke() | ||
{ | ||
var values = bm.GetBlogListByWriter(1); | ||
return View(values); | ||
} | ||
} | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@using EntityLayer.Concrete | ||
|
||
@model List<Blog> | ||
|
||
@{ | ||
Layout = "~/Views/Shared/UserLayout.cshtml"; | ||
} | ||
|
41 changes: 41 additions & 0 deletions
41
CoreDemo/CoreDemo/Views/Shared/Components/WriterLastBlog/Default.cshtml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<div class="tech-btm"> | ||
<h4>Yazarın Diğer Yazıları</h4> | ||
|
||
<div class="blog-grids row mb-3"> | ||
<div class="col-md-5 blog-grid-left"> | ||
<a href="single.html"> | ||
<img src="~/CoreBlogTema/web/images/1.jpg" class="img-fluid" alt=""> | ||
</a> | ||
</div> | ||
<div class="col-md-7 blog-grid-right"> | ||
|
||
<h5> | ||
<a href="single.html">Pellentesque dui, non felis. Maecenas male non felis </a> | ||
</h5> | ||
<div class="sub-meta"> | ||
<span> | ||
<i class="far fa-clock"></i> 20 Jan, 2018 | ||
</span> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div class="blog-grids row mb-3"> | ||
<div class="col-md-5 blog-grid-left"> | ||
<a href="single.html"> | ||
<img src="~/CoreBlogTema/web/images/6.jpg" class="img-fluid" alt=""> | ||
</a> | ||
</div> | ||
<div class="col-md-7 blog-grid-right"> | ||
<h5> | ||
<a href="single.html">Pellentesque dui, non felis. Maecenas male non felis </a> | ||
</h5> | ||
<div class="sub-meta"> | ||
<span> | ||
<i class="far fa-clock"></i> 20 Feb, 2018 | ||
</span> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@using CoreDemo | ||
@using CoreDemo.Models | ||
@using EntityLayer.Concrete | ||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains 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
Binary file modified
BIN
+0 Bytes
(100%)
CoreDemo/CoreDemo/obj/Debug/net6.0/CoreDemo.csproj.AssemblyReference.cache
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
CoreDemo/CoreDemo/obj/Debug/net6.0/CoreDemo.csproj.CoreCompileInputs.cache
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2931d25aa39207271ccc5f57953e94e18b362db0 | ||
8df06d9ff7c8c023a01f728bcdc19d0ba318360e |
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.