예제 #1
0
        public MatchedBigLittleParentModel GetMatchByUserAccountId(int userId)
        {
            var ret = UserMappingService.GetMatchByUserAccountId(userId);

            if (ret != null)
            {
                return(ret);
            }
            return(null);
        }
예제 #2
0
 public void DeleteMatchById(int matchId)
 {
     UserMappingService.DeleteMatchById(matchId);
 }
예제 #3
0
 public List <ShallowMatchedBigLittleParentModel> GetAllMatchesShallow()
 {
     return(UserMappingService.GetAllMatchesShallow());
 }
예제 #4
0
 public MatchedBigLittleParentModel GetMatch(int matchId)
 {
     return(UserMappingService.GetMatch(matchId));
 }
예제 #5
0
 public ConsolidatedUserInformationResponseModel FindParentForLittle(int littleId)
 {
     return(UserMappingService.FindParentForLittle(littleId));
 }
예제 #6
0
 public List <UserAccountModel> FindUnmatchedLittles()
 {
     return(UserMappingService.FindUnmatchedLittles());
 }
예제 #7
0
 public BigLittleParentMapModel CreateBigLittleParentMap([FromBody] BigLittleParentMapModel inputModel)
 {
     return(UserMappingService.CreateBigLittleParentMap(inputModel));
 }