Beispiel #1
0
        /// <summary>
        /// Get list of customers created by Customer Manager
        /// </summary>
        /// <param name="customer"></param>
        /// <returns></returns>
        public async Task <IEnumerable <Customer> > GetAllCustomersApprovedByCustomerManagerAsync()
        {
            var response = await _storedProcedureRepository.GetAllCustomersApprovedByCustomerManagerAsync();

            return(response);
        }