public ConsultantController()
 {
     reportService = new ExpenseReportService();
     employeeService = new EmployeeService();
     currencyService = new CurrencyService();
     fileUploader = new FileUploader();
     employee = employeeService.GetEmployee((int)Membership.GetUser().ProviderUserKey);
 }
 public void InitializeCurrencyTests()
 {
     IConfigurationDAL config = new MockConfigurationDAL();
     currencyService = new CurrencyService(config);
 }