Ejemplo n.º 1
0
 public StreamWriter getDifficultyStreamWriter()
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.getDifficultyStreamWriter());
     }
     catch (ServiceLoadException ex)
     {
         return(null);
     }
 }
Ejemplo n.º 2
0
 public bool readFeaturesX(double[,] X, String path, TaskDimensions task)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.readFeaturesX(X, path, task));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 3
0
 public List <RecruiteeDto> readIDandAVG(String path)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.readIDandAVG(path));
     }
     catch (ServiceLoadException ex)
     {
         return(null);
     }
 }
Ejemplo n.º 4
0
 public double[,] getNumberOfFeaturesX(String path, TaskDimensions task)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.getNumberOfFeaturesX(path, task));
     }
     catch (ServiceLoadException ex)
     {
         return(null);
     }
 }
Ejemplo n.º 5
0
 public bool writeDifficultyToFile(StreamWriter writeText, DataResult avgs)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.writeDifficultyToFile(writeText, avgs));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 6
0
 public bool writeFiles(String[] job_list, double[,] new_X, UserProfile[] users_profile, double[,] Y)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.writeFiles(job_list, new_X, users_profile, Y));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 7
0
 public bool underAndOverEstimations(StreamWriter writeText, int id, int num, int numOverEstimated, int numActualy, int numUnderEstimated)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.underAndOverEstimations(writeText, id, num, numOverEstimated, numActualy, numUnderEstimated));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 8
0
 public UserProfile[] readUserProfile(String path, TaskDimensions task)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.readUserProfile(path, task));
     }
     catch (ServiceLoadException ex)
     {
         return(null);
     }
 }
Ejemplo n.º 9
0
 public bool writeGlobalAveragesInformation(double total_rating_avg_systemm, double total_similarity_avg_system, double total_inaccuracy_system, TaskDimensions task, StreamWriter writeText, UserProfile[] user, double[] users_calculated_raitings)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.writeGlobalAveragesInformation(total_rating_avg_systemm, total_similarity_avg_system, total_inaccuracy_system, task, writeText, user, users_calculated_raitings));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 10
0
 public bool detectSizeOfJobsColumns(TaskDimensions task, String path)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.detectSizeOfJobsColumns(task, path));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 11
0
 public bool writeAveragesToFile(DataResult result, StreamWriter writeText, UserProfile user)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.writeAveragesToFile(result, writeText, user));
     }
     catch (ServiceLoadException ex)
     {
         return(false);
     }
 }
Ejemplo n.º 12
0
 public List <TopJobData> writeValuesToFile(StreamWriter writeText, object[] res, String[] job_list, int user_number, double[,] X)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.writeValuesToFile(writeText, res, job_list, user_number, X));
     }
     catch (ServiceLoadException ex)
     {
         return(null);
     }
 }
Ejemplo n.º 13
0
 public double[,] readTrainingR(String path, TaskDimensions task, int user_number)
 {
     try
     {
         IFileSystemSvc svc = (IFileSystemSvc)this.getService(typeof(IFileSystemSvc).Name);
         return(svc.readTrainingR(path, task, user_number));
     }
     catch (ServiceLoadException ex)
     {
         return(null);
     }
 }