Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. public abstract class Event
  2. {
  3.          protected double eventTime;
  4.          protected BloodBank _bloodBank;
  5. }
  6.  
  7. public class DonorArrival : Event
  8. {
  9.         public DonorArrival(SimulationContext simulationContext)
  10.         {
  11.             _bloodBank = simulationContext.myBloodBank;
  12.         }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement