/// <summary> /// Initializes a new instance of the <see cref="VeteranProviderQueryLogics"/> class. /// </summary> public VeteranProviderQueryLogics() { this.veteransRepo = new VeteransRepo(); displayProviderCreator = new DisplayProviderCreator(); }
/// <summary> /// Initializes a new instance of the <see cref="ServiceProviderQueryLogics"/> class. /// </summary> public ServiceProviderQueryLogics() { this.serviceProviderRepo = new ServiceProviderRepo(); displayProviderCreator = new DisplayProviderCreator(); }
/// <summary> /// Initializes a new instance of the <see cref="LawEnforcementProviderQueryLogics"/> class. /// </summary> public LawEnforcementProviderQueryLogics() { this.lawEnforcementRepo = new LawEnforcementRepo(); this.displayProviderCreator = new DisplayProviderCreator(); }
/// <summary> /// Initializes a new instance of the <see cref="CompensationProviderQueryLogics"/> class. /// </summary> public CompensationProviderQueryLogics() { this.compensationRepo = new CompensationRepo(); this.displayProviderCreator = new DisplayProviderCreator(); }