You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
786 B
35 lines
786 B
using BrilliantSightClient.Model.Entity.ApiEntity; |
|
using BrilliantSightClient.Model.GradeLevel.Entity.DatabaseEntity; |
|
using BrilliantSightClient.Model.GradeResult.Entity; |
|
|
|
namespace BrilliantSightClient.Model.GradeLevel; |
|
|
|
public class GradeLevelCalculator |
|
{ |
|
public GradeLevelCalculator(AlgorithmResultEntity entity) |
|
{ |
|
|
|
} |
|
|
|
public GradeLevelSet GetCutGradeLevelSet(double maxVal, double minVal) |
|
{ |
|
return null; |
|
} |
|
|
|
public GradeLevelSet GetCutTotalGradeLevelSet(List<DataInfo> dataInfos) |
|
{ |
|
return null; |
|
} |
|
|
|
public GradeLevelSet GetSymGradeLevelSet(double devVal) |
|
{ |
|
return null; |
|
} |
|
|
|
public GradeLevelSet GetSymTotalGradeLevelSet(List<DataInfo> dataInfos) |
|
{ |
|
return null; |
|
} |
|
|
|
|
|
} |