public SheetController(EntityOwnerService entityOwnerService, SheetRepository sheetRepository, SheetRetrievalService sheetRetrievalService, SheetStatisticsService sheetStatisticsService)
     : base(entityOwnerService)
 {
     this._sheetRepository = sheetRepository;
     this._sheetRetrievalService = sheetRetrievalService;
     this._sheetStatisticsService = sheetStatisticsService;
 }
 protected BaseEntityController(EntityOwnerService entityOwnerService)
 {
     this.EntityOwnerService = entityOwnerService;
 }
 public CategoryController(EntityOwnerService entityOwnerService, 
                           CategoryRepository categoryRepository)
     : base(entityOwnerService)
 {
     this._categoryRepository = categoryRepository;
 }
 public CategoryController(EntityOwnerService entityOwnerService,
                           CategoryRepository categoryRepository) : base(entityOwnerService)
 {
     this._categoryRepository = categoryRepository;
 }
示例#5
0
 public TagReportController(IMapper mapper, SheetEntryRepository sheetEntryRepository, TagRepository tagRepository, EntityOwnerService entityOwnerService) : base(entityOwnerService)
 {
     this._mapper = mapper;
     this._sheetEntryRepository = sheetEntryRepository;
     this._tagRepository        = tagRepository;
 }
 public SheetStatisticsController(EntityOwnerService entityOwnerService, SheetRetrievalService sheetRetrievalService, SheetStatisticsService sheetStatisticsService) : base(entityOwnerService)
 {
     this._sheetRetrievalService  = sheetRetrievalService;
     this._sheetStatisticsService = sheetStatisticsService;
 }