DotNetShoutout - Stories tagged with Abstract Class
3
Shouts

Generic Repository Pattern - Entity Framework, ASP.NET MVC and Unit Testing Triangle

published 514 days, 13 hours, 42 minutes ago posted by http://tugberk-ugurlu.myopenid.com/http://tugberk-ugurlu.myopenid.com/ 518 days, 10 hours, 42 minutes ago
Monday, December 26, 2011 8:15:27 AM GMT Thursday, December 22, 2011 11:14:52 AM GMT
We will see how we can implement Generic Repository Pattern with Entity Framework and how to benefit from that. (more)
category: Web Dev | clicked: 86 | comment | | source: tugberkugurlu.com
tags: Repository, ASP.NET MVC 3, ASP.NET MVC, Entity Framework, Abstract Class
2
Shouts

Difference Between an Interface and Abstract Class

published 718 days, 6 hours, 30 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 719 days, 11 hours, 51 minutes ago
Sunday, June 05, 2011 3:27:33 PM GMT Saturday, June 04, 2011 10:05:57 AM GMT
Difference Between an Interface and Abstract Class On 11.05.13, In Programming, by uniquesaiful Difference between an interface and abstract class. Interface contains method definition – there is no implementation.  An abstract class some methods can be concrete.  In an interface, no accessibility modifiers are allowed.  An abstract class may have accessibility modifiers.  Feature Interface Abstract class Multiple inheritance A class may inherit several interfaces. A class may inherit only one ab... (more)
category: Web Dev | clicked: 20 | comment | | source: computersight.com
tags: Abstract Class, Difference, Interface