ASP C# Interfaces

103 Views Asked by At

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?

2

There are 2 best solutions below

0
On

Because of Polymorphism.

This post might be useful to you.

0
On

Idea is not to have dependency in your controller on real implementation of your service. If you are injecting service through interface you are controlling implementation outside of controller. Basic reasoning for this is to make testing of your controller easier. You can inject mocked service when testing controller logic. Check dependency injection pattern.