コード例 #1
0
 public HomeController(
     IInwardOutwardService IInwardOutwardService,
     IUnitOfWork UnitOfWork
     )
 {
     this.iInwardOutwardService = IInwardOutwardService;
     this.unitOfWork            = UnitOfWork;
 }
コード例 #2
0
        public InwardOutwardController(
            IInwardOutwardService InwardOutwardService,

            IUnitOfWork UnitOfWork
            )
        {
            this.inwardOutwardService = InwardOutwardService;

            this.unitOfWork = UnitOfWork;
        }