/// <summary>
 /// Collection Sheet Controller
 /// </summary>
 /// <param name="collectionSheetService"></param>
 /// <param name="reportCollectionSheetService"></param>
 /// <param name="collectionCarService"></param>
 /// <param name="typeCollectionInforService"></param>
 /// <param name="logger"></param>
 public CollectionSheetController(ICollectionSheetService collectionSheetService,
                                  IReportCollectionSheetService reportCollectionSheetService,
                                  ICollectionCarService collectionCarService,
                                  ITypeCollectionInforService typeCollectionInforService, ILogger <ControllerBase> logger) : base(logger)
 {
     _collectionSheetService       = collectionSheetService;
     _reportCollectionSheetService = reportCollectionSheetService;
     _collectionCarService         = collectionCarService;
     _typeCollectionInforService   = typeCollectionInforService;
 }
Esempio n. 2
0
 /// <summary>
 /// Report Controller
 /// </summary>
 /// <param name="collectionSheetService"></param>
 /// <param name="logger"></param>
 public ReportController(ICollectionSheetService collectionSheetService,
                         ILogger <ControllerBase> logger) : base(logger)
 {
     _collectionSheetService = collectionSheetService;
 }