Example #1
0
        public GetUserResponseDto GetAllUser()
        {
            var response = new GetUserResponseDto();

            response.Users = _iPmsLogic.GetAllUser();
            return(response);
        }