Example #1
0
 public AnonymousAccountController()
 {
     if (_dataSource == null)
     {
         _dataSource = new ContainmentDataSource();
     }
 }
Example #2
0
 public PaginatedAccountsController()
 {
     if (_dataSource == null)
     {
         _dataSource = new ContainmentDataSource();
     }
 }
Example #3
0
 public ITestActionResult ResetDataSource()
 {
     _dataSource = new ContainmentDataSource();
     return(StatusCode(HttpStatusCode.NoContent));
 }