Dependency Injection in .NET with examples?

前端 未结 8 1504
别跟我提以往
别跟我提以往 2020-11-27 14:31

Can someone explain dependency injection with a basic .NET example and provide a few links to .NET resources to extend on

8条回答
  •  旧巷少年郎
    2020-11-27 15:29

    Create DB layer project(class library) and add below code in it.

    public class UserData : IUserData
    {
        public string getUserDetails()
        {
            return "Asif";
        }
    }
    
    public interface IUserData
    {
        string getUserDetails();
    }
    

提交回复
热议问题