Exemplo n.º 1
0
        public void CancelSuggestion(int SuggestionCode)
        {
            CoupleTrainingSuggestion s = new CoupleTrainingSuggestion();

            s.CancelSuggestion(SuggestionCode);
        }
Exemplo n.º 2
0
        public string  CheckActiveSuggestions(int SenderCode, int ReceiverCode)
        {
            CoupleTrainingSuggestion s = new CoupleTrainingSuggestion();

            return(s.CheckActiveSuggestions(SenderCode, ReceiverCode));
        }
Exemplo n.º 3
0
        public void ReplySuggestion(int SuggestionCode, bool reply)
        {
            CoupleTrainingSuggestion s = new CoupleTrainingSuggestion();

            s.ReplySuggestion(SuggestionCode, reply);
        }
Exemplo n.º 4
0
        public IEnumerable <SuggestionResult> GetSuggestions(int UserCode, bool IsApproved)
        {
            CoupleTrainingSuggestion s = new CoupleTrainingSuggestion();

            return(s.GetSuggestions(UserCode, IsApproved));
        }
Exemplo n.º 5
0
        public string SendSuggestion(int SenderCode, int ReceiverCode)
        {
            CoupleTrainingSuggestion s = new CoupleTrainingSuggestion();

            return(s.SendSuggestion(SenderCode, ReceiverCode));
        }