using System.Collections.Generic; namespace FSO.Server.Database.DA.GlobalCooldowns { public interface IGlobalCooldowns { DbGlobalCooldowns Get(uint objguid, uint avatarid, bool useAccount, uint category); List GetAllByObj(uint objguid); List GetAllByAvatar(uint avatarid); List GetAllByObjectAndAvatar(uint objguid, uint avatarid); bool Create(DbGlobalCooldowns cooldown); bool Update(DbGlobalCooldowns cooldown); } }