In a DB context class, what does the following code do?
public DbSet Customers { get; set; }

a. It maps the Customer entity class to a database table named Customers.

b. It specifies the primary key for a database table named Customers.

c. It seeds the initial Customer data in a database table named Customers.

d. It sets up dependency injection for the Customer entity class.