Ejemplo n.º 1
0
        public void Insert_List_Ubs()
        {
            service.AddRange(GetListUbs());
            var atualInseridaUbs = service.GetUbs().ToList();

            CollectionAssert.Equals(GetListUbs(), atualInseridaUbs);
        }
Ejemplo n.º 2
0
 public ActionResult <IEnumerable <UbsDTO> > Get() =>
 Ok(service.GetUbs());