public void DeletarFoto(string idFoto) { try { tblfoto foto = new tblfoto(); foto.SetKeyValue(idFoto); foto.Delete(); } catch (Exception e) { throw e; } }
public static void Setup(int testItems) { SetTestRepo(); for(int i=0;i<testItems;i++){ tblfoto item=new tblfoto(); _testRepo._items.Add(item); } }
public static void Setup(tblfoto item) { SetTestRepo(); _testRepo._items.Add(item); }
public void SalvarFoto(int idAlbum, string titulo, string descricao, string filePath, string fileName, string thumbPath, string thumbName) { try { tblfoto foto = new tblfoto(); foto.SetIsNew(true); foto.id_album_foto = idAlbum; foto.nome = titulo; foto.descricao = descricao; foto.path = filePath; foto.arquivo = fileName; foto.arquivo_thumb = thumbName; foto.path_thumb = thumbPath; foto.Save(); } catch (Exception e) { throw e; } }