public ObjectMappingController(ObjectMappingRules rules, ObjectMappingService service, MerlinReadContext readContext)
 {
     this.rules       = rules;
     this.service     = service;
     this.readContext = readContext;
 }
Exemplo n.º 2
0
 public ObjectMappingServiceTests()
 {
     this.usersService = new UsersService();
     this.itemsService = new ItemsService(this.usersService);
     this.mapper       = new ObjectMappingService(this.usersService);
 }
 public ItemsController(ItemsService itemsService, UsersService usersService, ObjectMappingService mapper)
 {
     this.itemsService = itemsService;
     this.usersService = usersService;
     this.mapper       = mapper;
 }