コード例 #1
0
        public UnitOfWork(IDriverRepository <Driver> drivers,
                          ICustomerRepository <Customer> customers,
                          ITripRepository <Trip> trips)
        {
            Drivers = drivers.CheckForNull();

            Customers = customers.CheckForNull();

            Trips = trips.CheckForNull();
        }