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