public RacunController(RacunService racunService) { this.racunService = racunService; }
/// <summary> /// Initializes a new instance of the <see cref="RacunController"/> class. /// </summary> /// <param name="context">The context.</param> /// <param name="repository">The repository.</param> public RacunController() { this.apotekaContext = new ApotekaContext(); this.racunService = new RacunService(apotekaContext); this.vmService = new RacunVMService(apotekaContext); }