StudentSystem.Data.StudentsSystemData.StudentsSystemData C# (CSharp) Method

StudentsSystemData() public method

public StudentsSystemData ( IStudentSystemDbContext context ) : System
context IStudentSystemDbContext
return System
        public StudentsSystemData(IStudentSystemDbContext context)
        {
            if (context == null)
            {
                throw new ArgumentException();
            }

            this.context = context;
        }