示例#1
0
 public GetAdminUnitTest()
 {
     getAllAdminRepositoryMock       = new Mock <IGetAllAdminRepository>();
     getEncrypteListEventHandlerMock = new Mock <IAdminEncrypteListEventHandler>();
     getAllAdminQuery = new GetAllAdminQueryHandler(getAllAdminRepositoryMock.Object, getEncrypteListEventHandlerMock.Object);
 }
示例#2
0
 public GetAllAdminApiCommandHandler(IGetAllAdminQueryHandler getAllAdminQuery)
 {
     this.getAllAdminQuery = getAllAdminQuery;
 }