示例#1
0
 public UtilsService(CotizacionAppContext context)
 {
     _context = context;
 }
示例#2
0
 public void Setup()
 {
     _context           = new CotizacionAppContext();
     _utilsService      = new UtilsService(_context);
     _cotizacionService = new CotizacionService(_context, _utilsService);
 }
示例#3
0
 public CotizacionService(CotizacionAppContext context, IUtilsService utilsService)
 {
     _context      = context;
     _utilsService = utilsService;
     _client       = new HttpClient();
 }