Esempio n. 1
0
        public async Task <NotificationTypeCrtVM> FetchByIdAsync(int Id)
        {
            var notificationType = await notificationTypeRepository.GetByIdAsync(Id);

            var result = Mapper.Map <NotificationTypeCrtVM>(notificationType);

            return(result);
        }