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

            return(response);
        }