Esempio n. 1
0
 public AllocationsController(IAllocations iAllocations)
 {
     this.iAllocations = iAllocations;
 }
Esempio n. 2
0
 public AllocationsRepositoryTest()
 {
     this.iCalendarLibrary      = new Mock <IConnection <Calendar> >();
     this.iConfiguration        = new Mock <IConfiguration>();
     this.allocationsRepository = new AllocationsRepository(iCalendarLibrary.Object, iConfiguration.Object);
 }