I am working with ASP.NET MVC5 project. I am new to commercial programming and I am a little bit confused about Interfeaces, I haven't use them before. I have project which is almost done.
Here is an example:
public interface IUserService()
{
bool ValidateUser(string name, string password);
//.. others
}
I have also class implmenting this service
public class UserService : IUserService
{
public bool ValidateUser(string name, string password)
{
//code
}
//.. others
}
I am using UserService if my Controllers as example:
public class HomeController : Controller
{
IUserService _userService;
public HomeController(IUserService userService)
{
_userService = userService;
}
[HttpGet]
JsonResult Anymethod(string name, string pw)
{
return Json(_userService.ValidateUser(name,pw), JsonRequestBeh.AllowGet);
}
}
Why instead of IUserService not use UserService as static class without implementing IUserService?
public static UserService
{
ValidateUser(string user, string pw)
{
//code
}
}
What are beneift of using interfaces if it is in that case similar?
Because of Polymorphism.
This post might be useful to you.