コード例 #1
0
ファイル: VehicleService.cs プロジェクト: AmyDr/Zadatak2
 private VehicleService()
 {
     db = new VehicleContext();
 }
コード例 #2
0
 public VehicleService()
 {
     _context = new VehicleContext();
 }
コード例 #3
0
 public VehicleService(VehicleContext context, IMapper mapper)
 {
     Context = context;
     Mapper  = mapper;
 }