public static Hospital_app_02_BE.Data.Entities.News ToEntity(this NewsDto newsDto) { return(new Hospital_app_02_BE.Data.Entities.News() { Title = newsDto.Title, Id = newsDto.Id, Date = newsDto.Date, Description = newsDto.Description }); }
public static NewsView ToView(this NewsDto newsDto) { return(new NewsView() { Title = newsDto.Title, Id = newsDto.Id, Date = newsDto.Date, Description = newsDto.Description }); }