public ClassificationSchemeController(
     IDomainObjectService <Guid, ClassificationScheme> service,
     IMapper mapper
     ) : base(
         service,
         mapper)
 {
 }
Beispiel #2
0
 protected DomainObjectController(
     IDomainObjectService <TId, TDomainObject> service,
     IMapper mapper
     )
 {
     _service = service;
     _mapper  = mapper;
 }
 public GeographicRegionHierarchyController(
     IDomainObjectService <Guid, GeographicRegionHierarchy> service,
     IMapper mapper
     ) : base(
         service,
         mapper)
 {
 }