Beispiel #1
0
 public EditModel(ICapBacService CapBacService)
 {
     _CapBacService = CapBacService;
 }
Beispiel #2
0
 public CreateModel(ICapBacService CapBacService)
 {
     _CapBacService = CapBacService;
 }
Beispiel #3
0
 public IndexModel(ICapBacService CapBacService)
 {
     _CapBacService = CapBacService;
 }
Beispiel #4
0
 public DeleteModel(ICapBacService CapBacService)
 {
     _CapBacService = CapBacService;
 }
Beispiel #5
0
 public CapBacController(IErrorService errorService, ICapBacService capBacService)
     : base(errorService)
 {
     _capBacService = capBacService;
 }