Exemplo n.º 1
0
        public async Task <Tank> GetGuildTank(string ID)
        {
            DocumentReference df = Guild_Tanks.Document(ID);
            DocumentSnapshot  ds = await df.GetSnapshotAsync();

            Tank TempObj = null;

            if (ds.Exists)
            {
                TempObj = ds.ConvertTo <Tank>();
            }

            return(TempObj);
        }
Exemplo n.º 2
0
 public async Task DeleteGuildTank(string ID)
 {
     DocumentReference df = Guild_Tanks.Document(ID);
     await df.DeleteAsync();
 }
Exemplo n.º 3
0
 public async Task UpdateTank(Tank d)
 {
     await Guild_Tanks.Document(d.CharacterName).SetAsync(d);
 }