Exemple #1
0
        public List <TransactionPeriodique> getByDateBetween(int idPorteFeuille, int dYear, int fYear,
                                                             int dMonth  = 1, int dDay    = 1, int dHour    = 0,
                                                             int dMinute = 0, int dSecond = 0, int fMonth   = 12,
                                                             int fDay    = 30, int fHour  = 23, int fMinute = 59, int fSecond = 59)
        {
            DateTime debut = new DateTime(dYear, dMonth, dDay, dHour, dMinute, dSecond);
            DateTime fin   = new DateTime(fYear, fMonth, fDay, fHour, fMinute, fSecond);

            return(transactionPeriodiqueRepository.getTransactionPeriodiquesByDateBetween(idPorteFeuille, debut, fin));
        }