public DeterminationNoticeTest(string projectUrl, string userid, string password, string expected) { this.projectUrl = projectUrl; this.userid = userid; this.password = password; this.expected = expected; UIActions = new UserInitialActions(); CSActions = new ClaimantSearchActions(); CDActions = new ClaimantDetailsActions(); ReActions = new ReviewActions(); UtilActions = new UtilitiesActions(); DDBActions = new DeterminationDBActions(new DatabaseConnectivity(), new DatabaseModel()); }
public SanityTestCases(string projectUrl, string userid, string password, string expected) { this.projectUrl = projectUrl; this.userid = userid; this.password = password; this.expected = expected; UIActions = new UserInitialActions(); CSActions = new ClaimantSearchActions(); CDActions = new ClaimantDetailsActions(); RActions = new ReportActions(); ReActions = new ReviewActions(); UtilActions = new UtilitiesActions(); validation = new Validation(); }
public ManualReviewTestPL(string projectUrl, string userid, string password, string reviewType, string claimantId, string reviewQueueType) { this.projectUrl = projectUrl; this.userid = userid; this.password = password; this.reviewType = reviewType; this.claimantId = claimantId; this.reviewQueueType = reviewQueueType; UIActions = new UserInitialActions(); ReActions = new ReviewActions(); RqActions = new ReviewQueueActions(); RqPLActions = new ReviewDetailsPLActions(); RqDBActions = new ReviewQueueDBActions(new DatabaseConnectivity()); Validation = new Validation(); acreObj = new Acres(); }
public async Task Create(ReviewActions reviewAction) { await _context.ReviewActions.AddAsync(reviewAction); }