Beispiel #1
0
 internal static void DeleteMatchById(int matchId)
 {
     UserMappingRepository.DeleteMatchById(matchId);
 }
Beispiel #2
0
 internal static List <ShallowMatchedBigLittleParentModel> GetAllMatchesShallow()
 {
     return(UserMappingRepository.GetallMatchesShallow());
 }
Beispiel #3
0
 internal static MatchedBigLittleParentModel GetMatchByUserAccountId(int userId)
 {
     return(UserMappingRepository.GetMatchByUserAccountId(userId));
 }
Beispiel #4
0
 internal static MatchedBigLittleParentModel GetMatch(int matchId)
 {
     return(UserMappingRepository.GetMatch(matchId));
 }
Beispiel #5
0
 internal static ConsolidatedUserInformationResponseModel FindParentForLittle(int littleId)
 {
     return(UserMappingRepository.FindParentForLittle(littleId));
 }
Beispiel #6
0
 internal static List <UserAccountModel> FindUnmatchedLittles()
 {
     return(UserMappingRepository.FindUnmatchedLittles());
 }
Beispiel #7
0
 internal static BigLittleParentMapModel CreateBigLittleParentMap(BigLittleParentMapModel inputModel)
 {
     return(UserMappingRepository.CreateBigLittleParentMapModel(inputModel));
 }