Exemplo n.º 1
0
 public bool AddImage(int owner_id, int album_id, string name, string image_file_path)
 {
     try
     {
         Img img = new Img(1, owner_id, album_id, name, image_file_path);
         return(DBF.AddImage(img));
     }
     catch (Exception e) { throw e; }
 }