Beispiel #1
0
 public AutoPostsController(IPostService postService,
                            IVinDecodeService vinDecodeService,
                            IAutoPostService autoPostService) : base(postService)
 {
     _vinDecodeService = vinDecodeService;
     _autoPostService  = autoPostService;
     _postService      = postService;
 }
Beispiel #2
0
 public AutoPostService(IVinDecodeService vinDecodeService, MyDbContext myDbContext)
 {
     _vinDecodeService = vinDecodeService;
     _myDbContext      = myDbContext;
 }