Esempio n. 1
0
        //-- END SECURING API
        public int GetCountTransferByEmploye(int codeEmploye)
        {
            int CountTransfer = 0;

            try
            {
                //-- GETTING DATA
                CountTransfer = _operationRepository.GetCountTransferByEmploye(codeEmploye);
                //-- END GETTING DATA
            }
            catch (NullReferenceException Exception)
            {
                System.Diagnostics.Debug.Write(Exception.Message);
            }
            return(CountTransfer);
        }