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

            return(response);
        }